尝试过网络资源,并没有任何运气和我的视觉快速入门指南.
如果我有我的2d /多维数组:
array = [['x','x',' x','x'],['x','S',' ','x']] print array.index('S') it returns nil
那么我去输入:
array = ['x','x'] print array.index('S')
它返回我正在寻找的值1
我的第一个猜测是在.index()中调用了一些错误,它需要两个参数,一个用于行和列?无论如何我如何使.index为多维数组工作?这是解决我的小迷宫问题的第一步
解决方法
a.each_index { |i| j = a[i].index 'S'; p [i,j] if j }
更新:好的,我们可以返回多个匹配项.最好尽可能多地利用核心API,而不是使用解释的Ruby代码逐个迭代,所以让我们添加一些短路退出和迭代演绎来将行分成几部分.这次它被组织为Array上的实例方法,并返回[row,col]子数组的数组.
a = [ %w{ a b c d },%w{ S },%w{ S S S x y z },%w{ S S S S S S },%w{ x y z S },%w{ x y S a b },%w{ x },%w{ } ] class Array def locate2d test r = [] each_index do |i| row,j0 = self[i],0 while row.include? test if j = (row.index test) r << [i,j0 + j] j += 1 j0 += j row = row.drop j end end end r end end p a.locate2d 'S'