Skip to content

Instantly share code, notes, and snippets.

@tstirrat15
Created January 27, 2016 04:59
Show Gist options
  • Save tstirrat15/d7f6492961476a24c705 to your computer and use it in GitHub Desktop.
Save tstirrat15/d7f6492961476a24c705 to your computer and use it in GitHub Desktop.
(defn my-assoc-in
"Implements assoc-in"
[m [k & ks] v]
(if (empty? ks)
(assoc m k v)
(assoc m k (recur (k m) ks v))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment