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

Re^4: Finding the max()/min()

by sleepingsquirrel (Chaplain)
on Dec 19, 2004 at 01:40 UTC ( [id://415925]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Finding the max()/min()
in thread Finding the max()/min()

There's a bug in that code, try finding the max of this list...
@a = (1,0,3,2);


-- All code is 100% tested and functional unless otherwise noted.

Replies are listed 'Best First'.
Re^5: Finding the max()/min()
by elusion (Curate) on Dec 19, 2004 at 02:21 UTC
    Good catch; I forgot the edge case. Here's the fix:
    sub max { my $max = shift; return $max if not @_; my $next = shift; unshift @_, $max > $next ? $max : $next; goto &max; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-20 15:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found