Help for this page

Select Code to Download


  1. or download this
    sort { $a cmp $b } keys %count
    
  2. or download this
    sort { $count{$a} <=> $count{$b} } keys %count
    
  3. or download this
    sort { $count{$b} <=> $count{$a} } keys %count