Skip to content

Instantly share code, notes, and snippets.

@amalloy
Created March 31, 2016 23:10
Show Gist options
  • Save amalloy/570557b730f2fdec41fc0a0730722e20 to your computer and use it in GitHub Desktop.
Save amalloy/570557b730f2fdec41fc0a0730722e20 to your computer and use it in GitHub Desktop.
(defn key-tree [m]
(if (not (map? m))
[[]]
(for [[k v] m
path (key-tree v)]
(cons k path))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment