Hi:
I would like to know the correct way to do the following:
I am trying to sort an array of hashes. I create the array of hashes with the entry $char[$pos]{$z}++;
where the $pos range is from 1..1000 and $z values is from 1..200.
Each time I found $z I increment the FREQUENCY of this. So how I can print this 1000 array sorting this hash by FREQUENCY?
So if I want to see the frequency of 10 in the positions 5 I write $char[5]{10}. If I want to see all $z in order of frequency in the position 5, how can I sort this array of hash?