1
a = %w(albatross dog horse)
a.max_by {|x| x.length }   #=> "albatross"

您如何使用max_by.with_index获取最大值的索引(在本例中为 0)?

红宝石 1.9.3

4

2 回答 2

6
a.each_with_index.max_by { |x,i| x.length }.last
于 2012-06-25T04:33:06.207 回答
2

找到了:a.each_with_index.max_by {|x, idx| x.length }

于 2012-06-25T04:32:53.883 回答