我正在制作一个数独游戏,我需要能够检查输入的数字是否已经在行中或已经存在于冲突列中。现在,这正在改变所有种子值的背景。如何检查特定条目并查看它是否已存在行或列中?
#nums_list is a 2_d list of the Entry widget id tags
#check_list are the 0's and digits of the seed values
def check_conf(self):
for r in range(0, self.height, 1):
for c in range(0, self.width, 1):
if self.nums_list[r][c].get().isdigit():
if int(self.nums_list[r][c].get()) == int(self.check_list[r][c]):
self.nums_list[r][c].config(background = 'red')
的完整代码