- or download this
use strict;
use warnings;
...
}
}
print "Whew, that resulted in $count result-producing iterations!\n";
- 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!
- or download this
my %overlap;
@overlap{@combo_B} = ();
next INNER if first{ exists $overlap{$_} } @combo_A;