我正在尝试查找中的任何子列表list1
是否具有重复值,因此需要告诉我 list1[0] 中的数字是否与 list[1] 中的数字相同(重复 20)
数字代表坐标,list1 中每个项目的坐标不能重叠,如果它们重叠,那么我有一个模块可以重新运行一个新的 list1,直到没有坐标是 smae
请帮忙
list1 = [[7, 20], [20, 31, 32], [66, 67, 68],[7, 8, 9, 2],
[83, 84, 20, 86, 87], [144, 145, 146, 147, 148, 149]]
x=0
while x != 169:
if list1.count(x) > 0:
print ("repeat found")
else:
print ("no repeat found")
x+=1