in reply to Re: Re: splitting array values
in thread splitting array values
the output is all the values not in order for both printings. Thanksforeach my $sorted(@sorted){ $scorehash{$sorted} = undef; } print Dumper(%scorehash); my @ranks2 = sort { $b <=> $a } keys %scorehash; print Dumper(\@ranks2); print $ranks2[0];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: splitting array values
by dakedesu (Scribe) on Jun 01, 2004 at 03:32 UTC |