in reply to Re: Find number of unique values in hash
in thread Find number of unique values in hash

Improving on your idea:
print scalar grep{$_->{'age'} == 12} values %hoh;

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

Replies are listed 'Best First'.
Re^3: Find number of unique values in hash
by saberworks (Curate) on Jan 19, 2010 at 22:21 UTC
    I like yours better.