Skip to content

Commit 7c490cb

Browse files
authored
Update 79-Word-Search.py
1 parent f26b627 commit 7c490cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/79-Word-Search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ def dfs(r, c, i):
3434
if dfs(r, c, 0):
3535
return True
3636
return False
37-
37+
3838
# O(n * m * 4^n)

0 commit comments

Comments
 (0)