Sorting is done by comparing first field alphanumeric and comparing second field from first dataset with third field from second dataset. `@dat = sort { $a->[0] cmp $b->[0] || $a->[1] <=> $b->[2] } (@dat);`
Sorting is done by comparing first field alphanumeric and comparing second field from first dataset with third field from second dataset.
@dat = sort { $a->[0] cmp $b->[0] || $a->[1] <=> $b->[2] } (@dat);