a = %w(albatross dog horse)
a.max_by {|x| x.length } #=> "albatross"
max_by.with_index
最大値(この場合は0)のインデックスを取得するにはどうすればよいですか?
Ruby 1.9.3
a = %w(albatross dog horse)
a.max_by {|x| x.length } #=> "albatross"
max_by.with_index
最大値(この場合は0)のインデックスを取得するにはどうすればよいですか?
Ruby 1.9.3