use strict; use warnings; my ($x, $y, $ref); for (0..20) { # Randomize some data points for testing $x = int rand 100; $y = int rand 100; $ref->[$_] = [$x,$y]; } for (sort {$b->[1] <=> $a->[1] or $a->[0] <=> $b->[0]} @$ref) { print $_->[0] . ',' . $_->[1] . "\n"; }
In reply to Re: sorting question
by TedPride
in thread sorting question
by chinman
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |