in reply to Re: Getting the keys of identical values in a hash
in thread Getting the keys of identical values in a hash

And then check for keys whose anonymous array has more than one value:
my @same_value_keys = grep { @{$_} > 1 } values %ihash;
where each array element is itself an array of keys with the same value in the original hash.

-QM
--
Quantum Mechanics: The dreams stuff is made of