# Each line is one game. First two listed players in each game form one team (a pair), # and the rest form the other team (pair or triple as needed). # # No player meets any other more than once, in any capacity. # # No player appears in a triple more than once. # # Only 5 rounds are possible. m21 = [ # Round 1: [ [0, 1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16], [17, 18, 19, 20] ], # Round 2: [ [0, 6, 11, 16], [4, 5, 10, 15, 20], [3, 9, 14, 19], [2, 8, 13, 18], [1, 7, 12, 17] ], # Round 3: [ [0, 8, 10, 19], [2, 5, 12, 14], [4, 7, 9, 16, 18], [1, 11, 13, 20], [3, 6, 15, 17] ], # Round 4: [ [0, 7, 14, 20], [3, 5, 11, 18], [1, 8, 9, 15], [4, 6, 12, 13, 19], [2, 10, 16, 17] ], # Round 5: [ [0, 12, 15, 18], [1, 5, 16, 19], [2, 6, 9, 20], [3, 7, 10, 13], [4, 8, 11, 14, 17] ] ]