Skip to content

Commit f26b627

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

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/79-Word-Search.py

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

0 commit comments

Comments
 (0)