Help for this page

Select Code to Download


  1. or download this
        $counts{$name}{$_} += ($masks{$_} | $letters) =~ /M/ for @unique;
    
  2. or download this
        for my $label (@unique)
          {
          print "$masks{$label}   |   $letters\n";
          $counts{$name}{$label} += ($masks{$label} | $letters) =~ /M/;
          }