Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        }
    
    print "$_\t$max{$_}\n" for sort { $a <=> $b } keys %max;
    
  2. or download this
    $ perl test.pl
    1       4
    2       7
    3       10
    $