-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path079 Word Search.py
77 lines (67 loc) · 2.31 KB
/
079 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
'''
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.
For example,
Given board =
[
['A','B','C','E'],
['S','F','C','S'],
['A','D','E','E']
]
word = "ABCCED", -> returns true,
word = "SEE", -> returns true,
word = "ABCB", -> returns false.
'''
from collections import defaultdict
class Solution(object):
def exist(self, board, word):
"""
:type board: List[List[str]]
:type word: str
:rtype: bool
"""
if self._hasEnoughCharacters(board, word):
m = len(board)
n = len(board[0])
for i in range(m):
for j in range(n):
if self._exist(board, i, j, m, n, word):
return True
return False
else:
return False
def _exist(self, board, i, j, m, n, word):
if len(word) == 0:
return True
if i < 0 or i >= m or j < 0 or j >= n or board[i][j] != word[0]:
return False
temp = board[i][j]
board[i][j] = "."
next_target = word[1:]
next_result = self._exist(board, i - 1, j, m, n, next_target) \
or self._exist(board, i + 1, j, m, n, next_target) \
or self._exist(board, i, j - 1, m, n, next_target) \
or self._exist(board, i, j + 1, m, n, next_target)
board[i][j] = temp
return next_result
def _hasEnoughCharacters(self, board, word):
character_counts = defaultdict(int)
for ch in word:
character_counts[ch] += 1
return all(sum(map(lambda line: line.count(ch), board)) >= count for ch, count in character_counts.items())
if __name__ == "__main__":
assert Solution().exist([
['A', 'B', 'C', 'E'],
['S', 'F', 'C', 'S'],
['A', 'D', 'E', 'E']
], "ABCCED") == True
assert Solution().exist([
['A', 'B', 'C', 'E'],
['S', 'F', 'C', 'S'],
['A', 'D', 'E', 'E']
], "SEE") == True
assert Solution().exist([
['A', 'B', 'C', 'E'],
['S', 'F', 'C', 'S'],
['A', 'D', 'E', 'E']
], "ABCB") == False