Help for this page
sub isSubsetHash2 { my @small = split ':', $_[0]; ... @big{ split( ':', $_[1] ) } = (); return scalar( @small ) == grep { exists $big{$_} } @small; }