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]したい。Clojure には. Haskellでどうやってそれを行うことができますか? 標準APIにそのような機能があると思われますが、見つかりません。[[1 2] [2 3] [3 4]][(1 2) (2 3) (3 4)](partition 2 1 [1,2,3,4])
[1,2,3,4]
[[1 2] [2 3] [3 4]]
[(1 2) (2 3) (3 4)]
(partition 2 1 [1,2,3,4])