Skip to content

Instantly share code, notes, and snippets.

@chpill
Last active March 26, 2017 00:34
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 chpill/fd59a8071bb8dfa8a7d5e04299a5c097 to your computer and use it in GitHub Desktop.
Save chpill/fd59a8071bb8dfa8a7d5e04299a5c097 to your computer and use it in GitHub Desktop.
(defn make-chunks [chunk-count chunk-size]
(for [i (range chunk-count)]
(for [j (range chunk-size)]
{:a (mod j 3)})))
(def chunks (make-chunks 10 999))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment