# 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 partners any other more than once, and no player opposes any other more than once. # # Only 5 rounds are possible. m16 = [ # Round 1: [ [0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11], [12, 13, 14, 15] ], # Round 2: [ [0, 7, 10, 13], [3, 4, 9, 14], [2, 5, 8, 15], [1, 6, 11, 12] ], # Round 3: [ [0, 5, 11, 14], [1, 4, 10, 15], [3, 6, 8, 13], [2, 7, 9, 12] ], # Round 4: [ [0, 6, 9, 15], [2, 4, 11, 13], [1, 7, 8, 14], [3, 5, 10, 12] ], # Round 5: [ [0, 4, 8, 12], [1, 5, 9, 13], [2, 6, 10, 14], [3, 7, 11, 15] ] ]