-
-
Save Chouser/451752 to your computer and use it in GitHub Desktop.
This file contains 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 cartes4 [a b & [c & cs :as more]] | |
(let [so-far (for [x a, y b] [x y])] | |
(if more | |
(recur so-far c cs) | |
(map flatten so-far)))) | |
(cartes4 [1 2 3] [9] [4 5] [6 7 8]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment