Help for this page

Select Code to Download


  1. or download this
    my @sorted_words = map { $HashA{$_} } @sorted_scores;
    
  2. or download this
    my @sorted_words;
    foreach (@sorted_scores) {
       push(@sorted_words, $HashA{$_};
    }