Skip to content

Instantly share code, notes, and snippets.

@amalloy
Created December 20, 2015 04:21
Show Gist options
  • Save amalloy/38295629f7b7ec3ca6ea to your computer and use it in GitHub Desktop.
Save amalloy/38295629f7b7ec3ca6ea to your computer and use it in GitHub Desktop.
(defn foo [order m]
(if (empty? order)
[[]]
(let [k (first order)]
(for [v (get m k)
more (foo (rest order) m)]
(cons v more)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment