Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the easiest way to convert

[x1, x2, x3, ... , xN]

to

[[x1, 2], [x2, 3], [x3, 4], ... , [xN, N+1]]

?

share|improve this question

6 Answers

up vote 174 down vote accepted

If you're using ruby 1.8.7 or 1.9, you can use the fact that iterator methods like each_with_index, when called without a block, return an Enumerator object, which you can call Enumerable methods like map on. So you can do:

arr.each_with_index.map { |x,i| [x, i+2] }

In 1.8.6 you can do:

require 'enumerator'
arr.enum_for(:each_with_index).map { |x,i| [x, i+2] }
share|improve this answer
Thanks! Could you give me a pointer to documentation for .each_with_index.map ? – Misha Moroshko Jan 15 '11 at 1:41
1  
@Misha: map is a method of Enumerable as always. each_with_index, when called without a block, returns an Enumerator object (in 1.8.7+), which mixes in Enumerable, so you can call map, select, reject etc. on it just like on an array, hash, range etc. – sepp2k Jan 15 '11 at 1:45
2  
IMO this is simpler and better-reading in 1.8.7+: arr.map.with_index{ |o,i| [o,i+2] } – Phrogz Jan 15 '11 at 2:43
4  
@Phrogz: map.with_index doesn't work in 1.8.7 (map returns an array when called without a block in 1.8). – sepp2k Jan 15 '11 at 2:50
1  
@PlexQ No, it doesn't. The only way you'd see changes in the original array would be if you called mutating methods on the value inside the block. – sepp2k May 9 '12 at 3:12
show 5 more comments

Ruby >= 1.9.3 provides Enumerator#with_index(offset), so you just need to build an enumerator from the array (use Object#to_enum or Array#map, whatever feels more declarative to you):

xs = [:a, :b, :c]
xs.to_enum.with_index(2).to_a
#=> [[:a, 2], [:b, 3], [:c, 4]]
share|improve this answer
2  
This is the best answer so far! – David James Aug 22 '12 at 21:27

Here are two more options for 1.8.6 (or 1.9) without using enumerator:

# Fun with functional
arr = ('a'..'g').to_a
arr.zip( (2..(arr.length+2)).to_a )
#=> [["a", 2], ["b", 3], ["c", 4], ["d", 5], ["e", 6], ["f", 7], ["g", 8]]

# The simplest
n = 1
arr.map{ |c| [c, n+=1 ] }
#=> [["a", 2], ["b", 3], ["c", 4], ["d", 5], ["e", 6], ["f", 7], ["g", 8]]
share|improve this answer

Over the top obfuscation:

arr = ('a'..'g').to_a
indexes = arr.each_index.map(&2.method(:+))
arr.zip(indexes)
share|improve this answer
1  
i like that one, obscure code is always fun to maintain. – Jeff Ancel Nov 10 '11 at 3:43
Andrew must have great job security! :) – David James Jul 19 '12 at 6:36
module Enumerable
  def map_with_index(&block)
    i = 0
    self.map { |val|
      val = block.call(val, i)
      i += 1
      val
    }
  end
end

["foo", "bar"].map_with_index {|item, index| [item, index] } => [["foo", 0], ["bar", 1]]
share|improve this answer
a = [1, 2, 3]
p [a, (2...a.size+2).to_a].transpose
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.