Help for this page

Select Code to Download


  1. or download this
    @sorted = map  { $_->[0] }
              sort { $a->[1] <=> $b->[1] } # use numeric comparison
              map  { [$_, length($_)] }    # calculate the length of the s
    +tring
                   @unsorted;
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    } @arr;
    
    print "\nsorted = @sorted\n";