Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Remove lowest number

by monktim (Friar)
on Aug 06, 2003 at 16:33 UTC ( [id://281476]=note: print w/replies, xml ) Need Help??


in reply to Remove lowest number

You don't need all this sorting and all these arrays in your code.
my @d1s = sort { $b <=> $a } $d61 ; my @d2s = sort { $b <=> $a } $d62 ; my @d3s = sort { $b <=> $a } $d63 ; my @d4s = sort { $b <=> $a } $d64 ; my @all = sort { $b <=> $a } @d1s, @d2s, @d3s, @d4s ; print "\n@all \n\n" ;
You can replace it with this which has the sum snippit someone else posted:
my @all = sort { $b <=> $a } $d61, $d62, $d63, $d64; use List::Util qw(sum); my $sum = sum( @all[0 .. $#all-1] ); print "@all $sum\n";
You can even do this with less code put I was beat to the punch.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-23 19:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found