Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

n3toy's scratchpad

by n3toy (Hermit)
on Aug 07, 2008 at 22:04 UTC ( #703013=scratchpad: print w/replies, xml ) Need Help??

n3toy: I have a hash where the values are all numerical. Is there a quick way to sum all the hash values?

GrandFather: my $total; $total += $_ for values %hash;

Lawliet: $sum += $hash{$_} foreach keys %hash;

tye: my $count= map( (1)x$_, values %hash );

Lawliet forgot there was a values keyword!

davido: use List::Util qw(sum); my $total = sum( values %hash );

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others taking refuge in the Monastery: (1)
As of 2023-06-06 04:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    How often do you go to conferences?






    Results (26 votes). Check out past polls.

    Notices?