Created
February 24, 2015 15:50
-
-
Save chrismo/17d3fe00b5117d394aa2 to your computer and use it in GitHub Desktop.
4clojure 54
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
(fn [x coll] | |
(keep #(if (= (count %) x) % nil) | |
(map #(map last %) | |
(vals | |
(group-by | |
#(quot (first %) x) | |
(map-indexed #(vector % %2) coll))))) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment