We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aec2d28 + 569aa5e commit fd3972dCopy full SHA for fd3972d
1 file changed
src/koans/21_group_by.clj
@@ -10,7 +10,7 @@
10
11
"You can simulate filter + remove in one pass"
12
(= (get-odds-and-evens [1 2 3 4 5])
13
- ((partial (juxt filter remove) odd?) [1 2 3 4 5])
+ ((juxt filter remove) odd? [1 2 3 4 5])
14
[[1 3 5] [2 4]])
15
16
"You can also group by a primary key"
0 commit comments