Skip to content

Instantly share code, notes, and snippets.

@orend
Created September 29, 2014 13:58
Show Gist options
  • Save orend/3137f12c3af8d7e77985 to your computer and use it in GitHub Desktop.
Save orend/3137f12c3af8d7e77985 to your computer and use it in GitHub Desktop.
(defn zip [coll & more]
(map-indexed (fn [i e]
(conj (map #(nth % i) more) e))
coll))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment