a = %w(albatross dog horse)
a.max_by {|x| x.length } #=> "albatross"
您如何使用max_by.with_index
获取最大值的索引(在本例中为 0)?
红宝石 1.9.3
a = %w(albatross dog horse)
a.max_by {|x| x.length } #=> "albatross"
您如何使用max_by.with_index
获取最大值的索引(在本例中为 0)?
红宝石 1.9.3