Help for this page

Select Code to Download


  1. or download this
    my @array = qw( a a b c d d );
    
    ...
    
    print("$_: $counts{$_}\n")
       foreach @keys;
    
  2. or download this
    my @array = qw( a a b c d d );
    my %counts;
    ...
    
    print("$_: $counts{$_}\n")
       foreach sort keys %counts;