Help for this page

Select Code to Download


  1. or download this
    my @sorted = (sort {$count{$a} cmp $count{$b}} keys %count);
    
  2. or download this
    my @sorted = sort {$count{$a} <=> $count{$b}} keys %count;
    
  3. or download this
    $ perl -le'
    my @strings = qw( QS DD DFD SD QS QS QS DD DFS );
    ...
    '
    QS