|
|
|
good chemistry is complicated, and a little bit messy -LW |
|
| PerlMonks |
Re: highest value in hash (key is not value)by Anonymous Monk |
| on Mar 31, 2013 at 02:27 UTC ( [id://1026318]=note: print w/replies, xml ) | Need Help?? |
|
You have $highest=$key if ($highest < $value) ; You're storing the key, and comparing the key to the value But it sounds like you want to compare values, not keys So you need to store $highest_key and $highest_value, and compare $highest_value to $value
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||||||||||