diff --git a/src/koans/21_group_by.clj b/src/koans/21_group_by.clj index bd926fc..f27a967 100644 --- a/src/koans/21_group_by.clj +++ b/src/koans/21_group_by.clj @@ -10,7 +10,7 @@ "You can simulate filter + remove in one pass" (= (get-odds-and-evens [1 2 3 4 5]) - ((partial (juxt filter remove) odd?) [1 2 3 4 5]) + ((juxt filter remove) odd? [1 2 3 4 5]) [[1 3 5] [2 4]]) "You can also group by a primary key"