Help for this page

Select Code to Download


  1. or download this
    grep { @input_B eq $_ } @input_array
    
  2. or download this
    for my $inputKey (@input_array)
    {
        if (grep { $inputKey eq $_ } @input_A) ...
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
        print "CC0[$key] = $CC0\n";
        print "CC1[$key] = $CC1\n";
    }
    
  4. or download this
    16:27 >perl 1992_SoPW.pl
    N1: only 1 input is PI
    ...
    CC1[N3] = 1
    
    16:27 >
    
  5. or download this
    $primaryCC0{$inputKey} = [1, 1];