Skip to content

Instantly share code, notes, and snippets.

@khusnetdinov
Created August 12, 2019 18:57
Show Gist options
  • Save khusnetdinov/858c4c70ad2211d8cfa31f4532264cb2 to your computer and use it in GitHub Desktop.
Save khusnetdinov/858c4c70ad2211d8cfa31f4532264cb2 to your computer and use it in GitHub Desktop.
(fn [n coll]
(loop [n n
coll coll
acc '()]
(if (empty? coll)
(filter #(= n (count coll))(reverse acc)
(recur n (drop n coll) (conj acc (take n coll))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment