- or download this
my @people = ("Peter", "Paul", "Jane", "Mary", "Fred");
- or download this
my @example_teams = (["Peter", "Mary"], ["Paul"], ["Jane", "Fred"]);
- or download this
my @all_teams = (
[["Peter"], ["Mary"], ["Paul"], ["Jane"], ["Fred"]],
...
.
[["Peter", "Mary", "Paul", "Jane", "Fred"]]
);
- or download this
lookupteam(\@people, \@example_team); # returns 42
constuctteam(\@people, 42);
# returns [["Peter", "Mary"], ["Paul"], ["Jane", "Fred"]]