所以基本上我必须得到15个独特的坐标,彼此不同,但其中10个在1组中,其余5个在另一组中。
cords_set = set()
while len(cords_set) < 10:
x, y = 7, 0
while (x, y) == (7, 0):
x, y = randint(0, len(board) - 1), randint(0, len(board[0]) - 1)
cords_set.add((x, y))
cords_set2 = set()
while len(cords_set2) < 5:
x, y = 7, 0
while (x,y) == (7, 0):
x,y = randint(0, len(board) - 1), randint(0, len(board[0]) - 1)
cords_set2.add((x,y))
这是到目前为止的代码,但是cords_set中的一些坐标在cords_set2中是相同的,我希望它们都是不同的。