Skip to content

Instantly share code, notes, and snippets.

@eerohele
Created September 4, 2015 21:11
Show Gist options
  • Save eerohele/5bb604a403cb7c09fa60 to your computer and use it in GitHub Desktop.
Save eerohele/5bb604a403cb7c09fa60 to your computer and use it in GitHub Desktop.
Implement map with reduce
(defn map' [f xs] (reduce (fn [x y] (conj x (f y))) [] xs))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment