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