Help for this page

Select Code to Download


  1. or download this
    my %inter;
    for (keys %hist1)
    ...
            $inter{$_} = ($val1 <= $val2) ? $val1 : $val2;
        }
    }
    
  2. or download this
    my @common = grep exists $hist1{$_}, sort keys %hist2;