Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: printing largest hash value

by BrowserUk (Patriarch)
on Feb 22, 2005 at 04:39 UTC ( [id://433246]=note: print w/replies, xml ) Need Help??


in reply to printing largest hash value

Is there any Perl program that isn't simplified using List::Util? Why it never made it into the core, when so much other dross has....

#! perl -slw use strict; use List::Util qw[ max ]; my %hash = ( red => 2, pink => 1, orange => 4, black => 3, blue => 4 ); my $max = max values %hash; print "$_ => $hash{ $_ }" for sort grep{ $hash{ $_ } == $max } keys %h +ash; __END__ P:\test>433230 blue => 4 orange => 4

Examine what is said, not who speaks.
Silence betokens consent.
Love the truth but pardon error.

Replies are listed 'Best First'.
Re^2: printing largest hash value
by bmann (Priest) on Feb 22, 2005 at 05:00 UTC
    Why it never made it into the core...
    Actually, it did! It's been core since 5.72. Check perl572delta and perl58delta (not sure if these links'll work, I can't seem to reach perldoc.com from where I am).

      {glub!} <realsmall>I knew it was a good idea :{</realsmall>


      Examine what is said, not who speaks.
      Silence betokens consent.
      Love the truth but pardon error.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://433246]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-16 05:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found