What is the easiest way to convert
[x1, x2, x3, ... , xN]
to
[[x1, 2], [x2, 3], [x3, 4], ... , [xN, N+1]]
?
|
|
|
If you're using ruby 1.8.7 or 1.9, you can use the fact that iterator methods like
In 1.8.6 you can do:
|
|||||||||||||||||||
|
|
Ruby >= 1.9.3 provides Enumerator#with_index(offset), so you just need to build an enumerator from the array (use
|
|||||
|
|
Here are two more options for 1.8.6 (or 1.9) without using enumerator:
|
|||
|
|
|
Over the top obfuscation:
|
|||||||
|
|
|||
|
|