# 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. m43 = [ # Round 1: [ [11, 17, 28, 35], [9, 22, 24, 36], [1, 18, 26, 37], [3, 23, 29, 38], [4, 14, 25, 39], [31, 15, 7, 33, 40], [6, 10, 20, 34, 41], [5, 19, 8, 32, 42], [2, 12, 21, 30], [0, 13, 16, 27] ], # Round 2: [ [8, 18, 29, 35], [10, 23, 25, 36], [33, 37, 19, 27, 2], [32, 20, 0, 30, 38], [5, 15, 26, 39], [34, 40, 12, 28, 4], [7, 11, 21, 41], [6, 9, 16, 42], [3, 13, 22, 31], [1, 14, 17, 24] ], # Round 3: [ [9, 19, 30, 35], [33, 11, 20, 26, 36], [34, 16, 3, 24, 37], [1, 21, 31, 38], [32, 27, 12, 6, 39], [5, 13, 29, 40], [4, 8, 22, 41], [7, 10, 17, 42], [0, 14, 23, 28], [2, 15, 18, 25] ], # Round 4: [ [32, 10, 16, 31, 35], [34, 8, 21, 27, 36], [0, 17, 25, 37], [2, 22, 28, 38], [7, 13, 24, 39], [6, 14, 30, 40], [33, 41, 9, 23, 5], [4, 11, 18, 42], [1, 15, 20, 29], [3, 12, 19, 26] ], # Round 5: [ [15, 21, 24, 35], [32, 36, 18, 28, 13], [5, 22, 30, 37], [34, 7, 19, 25, 38], [33, 0, 10, 29, 39], [3, 11, 27, 40], [2, 14, 16, 41], [1, 12, 23, 42], [6, 8, 17, 26], [4, 9, 20, 31] ], # Round 6: [ [33, 12, 22, 25, 35], [14, 19, 29, 36], [6, 23, 31, 37], [4, 16, 26, 38], [34, 39, 11, 30, 1], [0, 8, 24, 40], [32, 3, 15, 17, 41], [2, 13, 20, 42], [7, 9, 18, 27], [5, 10, 21, 28] ] ]