# 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 twice. # # Only 5 rounds are possible. m23 = [ # Round 1: [ [0, 1, 2, 3, 4], [5, 6, 7, 8, 9], [12, 10, 11, 14, 13], [15, 16, 17, 18], [19, 20, 21, 22] ], # Round 2: [ [0, 6, 12, 18], [17, 11, 5, 4, 22], [9, 3, 10, 16, 21], [14, 2, 8, 15, 20], [1, 7, 13, 19] ], # Round 3: [ [0, 8, 11, 21], [2, 5, 13, 16], [4, 7, 10, 18, 20], [9, 22, 12, 15, 1], [14, 19, 6, 17, 3] ], # Round 4: [ [14, 16, 0, 7, 22], [3, 5, 12, 20], [1, 8, 10, 17], [4, 15, 6, 13, 21], [9, 2, 11, 18, 19] ], # Round 5: [ [20, 13, 9, 17, 0], [21, 18, 5, 14, 1], [2, 6, 10, 22], [3, 7, 11, 15], [4, 8, 12, 16, 19] ] ]