Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
       map  { qq{$_: $letterFreq{ $_ }\n} }
       sort { $letterFreq{ $b } <=> $letterFreq{ $a } || $a cmp $b }
       keys %letterFreq;
    
  2. or download this
    x: 3
    y: 2
    ...
    r: 1
    t: 1
    w: 1