# 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 twice. If only 3 rounds are played, then no # player is in a triple more than once. # # Only 5 rounds are possible. m26 = [ # Round 1: [ [0, 1, 2, 3, 4], [5, 6, 7, 8, 9], [10, 11, 12, 13], [14, 15, 16, 17], [18, 19, 20, 21], [22, 23, 24, 25] ], # Round 2: [ [0, 5, 10, 14, 18], [16, 12, 6, 1, 25], [2, 7, 21, 24], [3, 8, 17, 23], [4, 13, 20, 22], [9, 11, 15, 19] ], # Round 3: [ [17, 7, 12, 0, 19], [1, 5, 11, 20, 23], [2, 8, 10, 25], [3, 13, 14, 21], [4, 6, 15, 24], [9, 16, 18, 22] ], # Round 4: [ [0, 6, 21, 23], [1, 9, 10, 17, 24], [2, 19, 13, 16, 5], [3, 15, 20, 25], [4, 8, 12, 18], [7, 11, 14, 22] ], # Round 5: [ [0, 9, 13, 25], [1, 8, 15, 21, 22], [17, 6, 11, 2, 18], [3, 5, 12, 24], [4, 14, 19, 23], [7, 10, 16, 20] ] ]