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.
thanks again.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"; } }
|
|---|