Hey monks...
I have twenty four players, lets call them 'A'..'X'.
A "team" consists of 4 "players". generating all the possible combinations from this list of 24 "players" is very easy using the Math::Combinatorics module:
my @n = 'A'..'X';
my $comboObj = Math::Combinatorics->new(count => 4,
data => [@n],
);
there are 10626 possible combinations. However I would like to place a unique restriction on the combinations. I only want the ones in which no two "players" repeat on a team. Example:
The first combo returned is A, B, C, D. because of this any future combo containing AB, AC, AD, BC, BD, or CD is invalid. I believe the next valid combo would be A, E, F, G.
What would be the best way of generating the combos in this manner, or filtering the output from Math:Combinatorics to filter the list?
Thanks
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.