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次元配列を数値nで除算して、各要素の長さが(最大で)nの多次元配列を作成する方法を探しています。例えば
[1,2,3,4,5,6] / 3
結果は次のようになります。
[[1,2,3],[4,5,6]]
これで済むはず…
chunkedArr = arr.each_slice(3).to_a;