-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path79. Word Search
53 lines (36 loc) · 1.21 KB
/
79. Word Search
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
52
53
79. Word Search
Medium
1503
70
Favorite
Share
Given a 2D board and a word, find if the word exists in the grid.
The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more than once.
Example:
board =
[
['A','B','C','E'],
['S','F','C','S'],
['A','D','E','E']
]
Given word = "ABCCED", return true.
Given word = "SEE", return true.
Given word = "ABCB", return false.
class Solution:
def exist(self, board: List[List[str]], word: str) -> bool:
for i in range(len(board)):
for j in range(len(board[0])):
if self.dfs(board, i, j, word):
return True
return False
def dfs(self, board, i, j, word):
if len(word) == 0:
return True
if i<0 or j<0 or i>len(board)-1 or j>len(board[0])-1 or board[i][j]!=word[0]:
return
temp = board[i][j]
board[i][j] = '#'
res = self.dfs(board, i-1, j, word[1:]) or self.dfs(board, i+1, j, word[1:]) or \
self.dfs(board, i, j-1, word[1:]) or self.dfs(board, i, j+1, word[1:])
board[i][j] = temp
return res