- or download this
@sorted = map { $_->[1] }
sort { $a->[0] <=> $b->[0] }
map { [ length $_, $_ ] } @strings;
- or download this
@temp = map { [ length $_, $_ ] } @strings;
- or download this
@temp = sort { $a->[0] <=> $b->[0] };
- or download this
@sorted = map { $_->[1] } @temp;