-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexist.go
More file actions
63 lines (54 loc) · 1.45 KB
/
Copy pathexist.go
File metadata and controls
63 lines (54 loc) · 1.45 KB
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
/* https://leetcode.com/problems/word-search/description/
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.
*/
package lbacktracking
func exist(board [][]byte, word string) bool {
if len(board) == 0 || len(word) == 0 {
return false
}
words := []byte(word)
m, n := len(board), len(board[0])
var helper func(row, col int, words []byte) bool
helper = func(row, col int, words []byte) bool {
if board[row][col] != words[0] {
return false
}
if len(words) == 1 {
return true
}
board[row][col] = board[row][col] - 26
neighbors := [][]int{{row - 1, col}, {row, col - 1}, {row, col + 1}, {row + 1, col}}
for _, neighbor := range neighbors {
i, j := neighbor[0], neighbor[1]
if i < 0 || i >= m || j < 0 || j >= n ||
board[i][j] != words[1] {
continue
}
if helper(i, j, words[1:]) {
board[row][col] = board[row][col] + 26
return true
}
}
board[row][col] = board[row][col] + 26
return false
}
for i := range board {
for j := range board[i] {
if helper(i, j, words) {
return true
}
}
}
return false
}