-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0036_Valid_Sudoku.go
59 lines (55 loc) · 1.08 KB
/
0036_Valid_Sudoku.go
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
package leetcode
import "strconv"
func isValidSudoku(board [][]byte) bool {
//rows
for i := 0; i < 9; i++ {
tmp := [10]int{}
for j := 0; j < 9; j++ {
celValue := board[i][j : j+1]
if string(celValue) != "." {
index, _ := strconv.Atoi(string(celValue))
if index > 9 || index < 1 {
return false
}
if tmp[index] == 1 {
return false
}
tmp[index] = 1
}
}
}
for i := 0; i < 9; i++ {
tmp := [10]int{}
for j := 0; j < 9; j++ {
celValue := board[j][i : i+1]
if string(celValue) != "." {
index, _ := strconv.Atoi(string(celValue))
if index > 9 || index < 1 {
return false
}
if tmp[index] == 1 {
return false
}
tmp[index] = 1
}
}
}
for i := 0; i < 3; i++ {
for j := 0; j < 3; j++ {
tmp := [10]int{}
for ii := i * 3; ii < i*3+3; ii++ {
for jj := j * 3; jj < j*3+3; jj++ {
cellVal := board[ii][jj]
if string(cellVal) != "." {
index, _ := strconv.Atoi(string(cellVal))
if tmp[index] == 1 {
return false
}
tmp[index] = 1
}
}
}
}
}
return true
}