Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    
    my $number_of_entities = keys %hoh;      # BONK!
    
  2. or download this
    my @big_in_assoc_1 = grep keys %{$assocs_1{$_}} > 25, keys %assocs_2;
    
    # ... tics later
    
    my @relative_complement = grep !exists %assocs_1{$_}, keys %assocs_2; 
    + # OUCH!
    
  3. or download this
    my $number_of_entities = grep defined $hoh{$_}, keys %hoh;
    
  4. or download this
    my @big_in_assoc_1 =
      grep $assocs_1{$_} && keys %{$assocs_1{$_}} > 25,
      keys %assocs_2;