in reply to Re^7: trying to decide best data structure for problem at hand.
in thread trying to decide best data structure for problem at hand.

yeah...i do need to understand hashes better b/c I do not seem to get them, but I got it working:
for my $i ( keys %dub_hash ) { my $key = "$i -- "; if (keys (%{$dub_hash{$i}}) > 1) { print $key, join( "\n" . ' ' x length $key, keys %{ $dub_hash{ $i } } ),"\n"; } }
thanks again.