Help for this page

Select Code to Download


  1. or download this
    my ($max) = reverse sort keys %h;
    
  2. or download this
    my ($max) = sort {$b <=> $a} keys %h;
    
  3. or download this
    my $max = 0;
    $max < $_ and $max = $_ for @a;