in reply to Getting Max Value from Different Hashes
my $max = max( values( %hash_w ) ); # first one separately for my $href ( \%hash_x, \%hash_y, \%hash_z ) { my $try = max( values( %$href ) ); ( $try > $max ) and $max = $try; }
One world, one people
|
|---|