Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

n3toy's scratchpad

by n3toy (Hermit)
on Aug 07, 2008 at 22:04 UTC ( [id://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?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 13:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found