gpt4 book ai didi

ruby - 如何在 Ruby 中使用 max_by 和 with_index?

转载 作者:太空宇宙 更新时间:2023-11-03 17:12:08 24 4
gpt4 key购买 nike

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

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

ruby 1.9.3

最佳答案

a.each_with_index.max_by { |x,i| x.length }.last

关于ruby - 如何在 Ruby 中使用 max_by 和 with_index?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11183537/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com