Can I get the next value in an each loop?
(1..5).each do |i|
@store = i + (next value of i)
end
where the answer would be..
1 + 2 + 2 + 3 + 3 + 4 + 4 + 5 + 5 = 29
And also can I get the next of the next value?
|
|
Like this:
There may be better ways, but this works. You can get the next of the next value like this:
|
|||||||||||||||||
|
|
One approach that wouldn't use indexes is Enumerable#zip:
|
|||
|
|