Skip to content

Commit

Permalink
Fix Word Search Solution
Browse files Browse the repository at this point in the history
jinbeom committed Sep 6, 2024
1 parent 31620b5 commit 570eaeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion word-search/kayden.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 시간복잡도: O(N*M*4^limit) limit: word의 길이
# 공간복잡도: O(N)
# 공간복잡도: O(N*M)
class Solution:
def exist(self, board: List[List[str]], word: str) -> bool:
m = len(board)

0 comments on commit 570eaeb

Please sign in to comment.