-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathword_search.py
51 lines (39 loc) · 1.79 KB
/
word_search.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'''
Question: https://leetcode.com/problems/word-search/
'''
class Solution:
def exist(self, board: List[List[str]], word: str) -> bool:
# Checks for empty conditions
if not board:
return False
if not word:
return True
# Iterate over each row and column on the board
for i in range(len(board)):
for j in range(len(board[0])):
if self.dfs(board, i, j, word):
return True
# If DFS doesn't return a True, word not found!
return False
# Helper function to perform DFS on the board to search a given word
def dfs(self, board, r, c, word):
# Base case - Empty word i.e. all characters checked and matched
if len(word) == 0:
return True
# Check if r and c i.e. row and column pointers are not going out of the board
# or if current character doesn't match the curr char from the board
if r < 0 or r >= len(board) or c < 0 or c >= len(board[0]) or word[0] != board[r][c]:
return False
# Assign current word in the ith row and jth column to a temporary variable
tmp = board[r][c]
# Make the current word on board non-alphabetic to avoid visits again
board[r][c] = '#'
# Continue to check for other letters of the word in every direction.
# Remember to search for all the words AFTER the current word!
res = self.dfs(board, r+1, c, word[1:]) or \
self.dfs(board, r-1, c, word[1:]) or \
self.dfs(board, r, c+1, word[1:]) or \
self.dfs(board, r, c-1, word[1:])
# Make the current word alphabetic again
board[r][c] = tmp
return res