Created
December 20, 2015 04:21
-
-
Save amalloy/38295629f7b7ec3ca6ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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