Answers for "hash max value ruby"

CSS
1

How to find the key of the largest value hash?

# short version
hash.key(hash.values.max)

# longer more flexable version: 
puts hash.max_by(&:last).first

#without the .first you get the key and the value pair as array
Posted by: Guest on June-18-2020

Browse Popular Code Answers by Language