Skip to content

Commit bbcccf1

Browse files
committed
修正代码错误
1 parent 598879e commit bbcccf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/solutions/0500-0599/out-of-boundary-paths.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class Solution:
119119
mod = 10 ** 9 + 7
120120

121121
dp = [[[0 for _ in range(maxMove + 1)] for _ in range(n)] for _ in range(m)]
122-
for i in r
122+
123123
for k in range(1, maxMove + 1):
124124
for i in range(m):
125125
for j in range(n):

0 commit comments

Comments
 (0)