Skip to content

Instantly share code, notes, and snippets.

Created July 1, 2011 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1059351 to your computer and use it in GitHub Desktop.
Save anonymous/1059351 to your computer and use it in GitHub Desktop.
;; amalloy's solution to Reverse Interleave
;; https://4clojure.com/problem/43
(fn [coll n]
(apply map list (partition n coll)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment