Skip to content

Instantly share code, notes, and snippets.

@brianfay
Created November 22, 2015 00:57
Show Gist options
  • Save brianfay/6ccde35652a7bed27a51 to your computer and use it in GitHub Desktop.
Save brianfay/6ccde35652a7bed27a51 to your computer and use it in GitHub Desktop.
my-assoc-in
(defn my-assoc-in
[m [k & ks] v]
(if (empty? ks)
(assoc m k v)
(assoc m k (my-assoc-in (k m) ks v))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment