Help for this page

Select Code to Download


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