Help for this page

Select Code to Download


  1. or download this
    @strings = sort { $b <=> $a } @strings;
  2. or download this
    my %code = map {
        $_ => calculation($_)
    } @strings;
    @strings = sort { $code{$b} <=> $code{$a} } keys %code;