# 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 is in a triple more than once. m29 = [ # Round 1: [ [28, 0, 7, 14, 21], [1, 8, 15, 22], [2, 9, 16, 23], [3, 10, 17, 24], [4, 11, 18, 25], [5, 12, 19, 26], [6, 13, 20, 27] ], # Round 2: [ [0, 8, 16, 24], [1, 9, 17, 25], [2, 10, 18, 26], [28, 3, 11, 19, 27], [4, 12, 20, 21], [5, 13, 14, 22], [6, 7, 15, 23] ], # Round 3: [ [0, 9, 18, 27], [1, 10, 19, 21], [2, 11, 20, 22], [3, 12, 14, 23], [4, 13, 15, 24], [5, 7, 16, 25], [28, 6, 8, 17, 26] ], # Round 4: [ [0, 10, 20, 23], [1, 11, 14, 24], [28, 2, 12, 15, 25], [3, 13, 16, 26], [4, 7, 17, 27], [5, 8, 18, 21], [6, 9, 19, 22] ], # Round 5: [ [0, 11, 15, 26], [1, 12, 16, 27], [2, 13, 17, 21], [3, 7, 18, 22], [4, 8, 19, 23], [28, 5, 9, 20, 24], [6, 10, 14, 25] ], # Round 6: [ [0, 12, 17, 22], [1, 13, 18, 23, 28], [2, 7, 19, 24], [3, 8, 20, 25], [4, 9, 14, 26], [5, 10, 15, 27], [6, 11, 16, 21] ] ]