- or download this
my @sorted_scores = sort { $b <=> $a } keys %HashA;
- or download this
my @sorted_words = map { $HashA{$_} } @sorted_scores;
- or download this
my @sorted_line_nums = map { $HashB{$_} } @sorted_words;
- or download this
print($HashC{$_}, "\n");
foreach @sorted_line_nums;
- or download this
print("$_\n");
foreach map { $HashC{$HashB{$HashA{$_}}} }
sort { $b <=> $a }
keys %HashA;