Skip to content

Instantly share code, notes, and snippets.

@devth
Created November 23, 2016 23:33
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 devth/51372438c16fd34d22c6c0d76b15513b to your computer and use it in GitHub Desktop.
Save devth/51372438c16fd34d22c6c0d76b15513b to your computer and use it in GitHub Desktop.
(reduce
(fn [acc i]
(update-in
acc [i]
(fn [x y] (prn x y) (+ y (or x 0)))
(* 2 i)))
{}
[1 2 3 4 1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment