Skip to content

Instantly share code, notes, and snippets.

@raek
Created July 1, 2011 20:37
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 raek/1059347 to your computer and use it in GitHub Desktop.
Save raek/1059347 to your computer and use it in GitHub Desktop.
(fn [coll n]
(loop [coll coll
vs (replicate n [])]
(if (empty? coll)
(map seq vs)
(recur (drop n coll)
(doall (map conj vs (take n coll)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment