in reply to Re^2: extract only smallest numbers
in thread extract only smallest numbers
... if (!exists $hash{$name}) { # unconditionally assign the first entry $hash{$name} = $code; } else { # assign further entries only if smaller... $hash{$name} = $code if $code < $hash{$name}; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: extract only smallest numbers
by oxone (Friar) on Jul 21, 2007 at 21:49 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |