We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d6b5d2 + d95ced4 commit bbb27cfCopy full SHA for bbb27cf
012_Minesweeper.md
@@ -165,7 +165,7 @@ def start():
165
for f in fx:
166
ni = i + f[0]
167
nj = j + f[1]
168
- if (ni >= 0 and ni < n and ni >= 0 and nj < n and b[ni][nj] != -1):
+ if (ni >= 0 and ni < n and nj >= 0 and nj < n and b[ni][nj] != -1):
169
b[ni][nj] += 1
170
171
@@ -446,7 +446,7 @@ def start():
446
447
448
449
450
451
452
0 commit comments