Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dbyrne committed Apr 28, 2011
1 parent cfa02e9 commit 58aeb14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/foreclojure/data_set.clj
Expand Up @@ -654,7 +654,7 @@
:title "Group a Sequence"
:times-solved 0
:restricted ["group-by"]
:description "Given a function f and a sequence s, write a function which return a map. The keys should be the values of f applied to each item in s. The value at each key should be a vector of corresponding items in the order they appear in s."
:description "Given a function f and a sequence s, write a function which returns a map. The keys should be the values of f applied to each item in s. The value at each key should be a vector of corresponding items in the order they appear in s."
:tags ["medium" "seqs" "core-functions"]
:tests ["(= (__ #(> % 5) #{1 3 6 8}) {false [1 3], true [6 8]})"
"(= (__ #(apply / %) [[1 2] [2 4] [4 6] [3 6]])\n {1/2 [[1 2] [2 4] [3 6]], 2/3 [[4 6]]})"
Expand Down

0 comments on commit 58aeb14

Please sign in to comment.