-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0036. Valid Sudoku
59 lines (58 loc) · 1.76 KB
/
0036. Valid Sudoku
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
class Solution {
public boolean isValidSudoku(char[][] board) {
// 9 * 9
int[] e = new int[]{0, 3, 6};
for (int r: e) {
for (int c: e) {
HashSet<Character> set = new HashSet<>();
for (int i = r; i < r + 3; i++) {
for (int j = c; j < c + 3; j++) {
char chr = board[i][j];
if (chr == '.') {
continue;
}
else if (!set.contains(chr)) {
set.add(chr);
}
else {
return false;
}
}
}
}
}
// r
for (int i = 0; i < 9; i++) {
HashSet<Character> set = new HashSet<>();
for (int j = 0; j < 9; j++) {
char chr = board[i][j];
if (chr == '.') {
continue;
}
else if (!set.contains(chr)) {
set.add(chr);
}
else {
return false;
}
}
}
// c
for (int j = 0; j < 9; j++) {
HashSet<Character> set = new HashSet<>();
for (int i = 0; i < 9; i++) {
char chr = board[i][j];
if (chr == '.') {
continue;
}
else if (!set.contains(chr)) {
set.add(chr);
}
else {
return false;
}
}
}
return true;
}
}