Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        }
    }
    print "Whew, that resulted in $count result-producing iterations!\n";
    
  2. or download this
    A B C 0 1
    A B C 0 2
    ...
    X Y Z 0 6
    X Y Z 3 6
    Whew, that resulted in 117000 result-producing iterations!
    
  3. or download this
            my %overlap;
            @overlap{@combo_B} = ();
            next INNER if first{ exists $overlap{$_} } @combo_A;