Here is my code (which works fine)
(这是我的代码(正常工作))
GRNG = range(6)
for l in GRNG:
for c in GRNG:
v = problem[l][c]
if v > 0:
grid[l][c].set_domain((v, v))
What is .set_domain((v,v))
doing?
(.set_domain((v,v))
在做什么?)
ask by Gary translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…