Solution Review: Reverse a Hash
See the solution to the exercise on reversing a hash.
We'll cover the following...
Solution
Let’s look at the solution before jumping into the explanation:
Press + to interact
# Assume that %straight is already definedmy %inverted;foreach my $k (keys %straight) {$inverted{$straight{$k}} = $k;}#loop for printing the inverted hashforeach my $element (sort keys %inverted) {say "$element => '$inverted{$element}'";}
...