现在,这是数组,
[1,2,3,4,5,6,7,8,9]
我想要,
[1,2],[2,3],[3,4] upto [8,9]
当我做,每个人(2)我得到,
[[1,4]..[8,9]]
我目前这样做,
arr.each_with_index do |i,j| p [i,arr[j+1]].compact #During your arr.size is a odd number,remove nil. end
有没有更好的办法??
解决方法
Ruby读了你的头脑.你想要隐性的元素?
[1,9].each_cons(2).to_a # => [[1,4],[4,5],[5,6],[6,7],[7,8],[8,9]]