Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなシーケンスが与えられます:
[1 2 3 4 5 6]
clojureの3つの隣接する要素ごとに分割するにはどうすればよいですか?次のように:
([1 2 3] [2 3 4] [3 4 5] [4 5 6])
clojure.coreの関数が優先されます!
パーティションを参照してください:
user=> (partition 3 1 [1 2 3 4 5 6]) ((1 2 3) (2 3 4) (3 4 5) (4 5 6))