Help for this page

Select Code to Download


  1. or download this
    my @sorted = join("\n", sort {$b <=> $a} @array);
    print foreach @sorted;
    
  2. or download this
    my @array = qw(2aa 2ba 12kf 9cn 9vn 21sg);
    
    ...
    
    @sorted = sort {$b <=> $a} @array;
    print $#sorted;