Help for this page

Select Code to Download


  1. or download this
    for my $line (@sorted_data) {
         print "$line \t $hash_count{$line} \n";
    }
    
  2. or download this
    print map {"$_ \t $hash_count{$_} \n"} @sorted_data;