本文介绍了如何找到最大值散列的关键字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下散列 {CA=> 2,MI=> 1,NY=> 1}
如何使用ruby返回最大键值对?我希望它返回CA
How can I return the maximum key value pair using ruby? I would like it to return "CA"
推荐答案
这将根据散列元素的值返回最大散列键值对:
This will return max hash key-value pair depending on the value of hash elements:
def largest_hash_key(hash)
hash.max_by{|k,v| v}
end
这篇关于如何找到最大值散列的关键字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!