我想生成一个seq,我以后可以做(映射)。它应该是这样的:
((0 0) (0 1) (0 2) (0 3) ... (7 7))
我现在要做的一段代码看起来非常非常难以产生如此简单的结果。我需要一些帮助才能做到这一点。
(loop [y 0 x 0 args (list)]
(if (and (= y 7) (= x 7))
(reverse (conj args (list y x)))
(if (= x 7)
(recur (+ y 1) 0 (conj args (list y x)))
(recur y (+ x 1) (conj args (list y x))))))
答案 0 :(得分:13)
(let [my-range (range 0 8)]
(for [i my-range
j my-range]
(list i j)))
=> ((0 0) (0 1) (0 2) (0 3) (0 4) (0 5) (0 6) (0 7)
(1 0) (1 1) (1 2) (1 3) (1 4) (1 5) (1 6) (1 7)
...
(7 0) (7 1) (7 2) (7 3) (7 4) (7 5) (7 6) (7 7))
for就像doseq,但它会收集结果:
(for [i [1 2 3]] i) => (1 2 3)
(doseq [i [1 2 3]] (print i)) => nil
答案 1 :(得分:5)
有一个库函数可以做到这一点:
(use '[clojure.contrib.combinatorics])
(cartesian-product (range 0 8) (range 0 8))