Skip to content

Commit 570eaeb

Browse files
author
jinbeom
committed
Fix Word Search Solution
1 parent 31620b5 commit 570eaeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

word-search/kayden.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 시간복잡도: O(N*M*4^limit) limit: word의 길이
2-
# 공간복잡도: O(N)
2+
# 공간복잡도: O(N*M)
33
class Solution:
44
def exist(self, board: List[List[str]], word: str) -> bool:
55
m = len(board)

0 commit comments

Comments
 (0)