Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Iterating over two dimension array and knowing current position

I am trying to iterate a multidimension array created with the following line

To iterate i'm using the following code

visiblematrix= Array.new (10) {Array.new(10){0}}

But this doesn't allow me to know the current x,y position while iterating. how can i find it out without resorting to temporary variables

visiblematrix.each do |x|
            x.each do |y|
                  puts y
            end 
end 
like image 621
Nuno Furtado Avatar asked Nov 27 '22 19:11

Nuno Furtado


1 Answers

You can also use the Enumerable#each_with_index method (ruby arrays include the Enumerable mixin).

visiblematrix.each_with_index do |x, xi|
  x.each_with_index do |y, yi|
    puts "element [#{xi}, #{yi}] is #{y}"
  end
end
like image 54
Teoulas Avatar answered Dec 06 '22 07:12

Teoulas