in reply to Sorting an HoH (Or Something?)

More details:

Remember that the $a and $b in your sort method are going to be doing comparisons based upon what might other wise be in your $_, so, if you need to sort the based upon the values that you would access like so:

$hash{$name}{$_}

You'd sort with $a and $b almost the same way:

$hash{$name}{$b} <=> $hash{$name}{$a}

The $b goes before the $a to ensure descending order.

Hanlon's Razor - "Never attribute to malice that which can be adequately explained by stupidity"