Help for this page

Select Code to Download


  1. or download this
    my @word = map{ $count{$_} || 0 } qw($word);  #I think This is where I
    + have gone wring
    my @count_word = map{ $count{$_} || 0 } qw($count{$word}); # I think T
    +his is where I have gone wring
    
  2. or download this
    my @word = keys %count;
    my @count_word = map{ $count{$_} || 0 } @word;