-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sublist: Sync with problem specifications (#688)
* sync tests * implement tests * sync docs * add instructions append * use two spaces for indentation * update starter file * relax the input type requirements * update config * remove the mention of lists in the instructions append * add missing top-level heading in append file * remove mention of sequential collections from append file
- Loading branch information
1 parent
b457dce
commit 9f28dd4
Showing
6 changed files
with
86 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Instructions append | ||
|
||
## Appendix | ||
|
||
~~~~exercism/note | ||
The instructions above are synchronized with a shared repository to ensure consistency across all language tracks. | ||
This appendix provides additional clarification or modifies the instructions as needed to better align with the goals of the Clojure track. | ||
~~~~ | ||
|
||
For this exercise in the Clojure track, you may **assume the input is a vector**, as indicated by the tests. | ||
However, this is not a strict requirement. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
(ns sublist) | ||
|
||
(defn classify [list1 list2] ;; <- arglist goes here | ||
;; your code goes here | ||
) | ||
(defn classify | ||
[coll1 coll2] | ||
;; function body | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters