Help for this page

Select Code to Download


  1. or download this
    @ranks[@sorted_positions] = (0 .. $#sorted_positions);
    
  2. or download this
    @ranks[1, 3, 5, 7, 9] = (0, 1, 2, 3, 4);
    
  3. or download this
    #!/usr/bin/env perl -l
    
    ...
    print "@ranks";
    @ranks[@sorted_positions] = (0 .. $#sorted_positions);
    print "@ranks";
    
  4. or download this
    a b c d e f g h i j
    a 0 c 1 e 2 g 3 i 4