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