forked from xiaoyaoworm/Leetcode-java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path36_validSudoku.java
62 lines (54 loc) · 2.09 KB
/
36_validSudoku.java
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
更简洁的写法,用一个长方形划定一个区域,检测其为valid or not:
public class Solution {
public boolean isValidSudoku(char[][] board) {
for(int i = 0; i < 9; i++){
if(!isValid(board,0,i,8,i)) return false; //check col
if(!isValid(board,i,0,i,8)) return false; //check row
}
for(int i = 0; i < 3; i++){
for(int j = 0; j < 3; j++){
if(!isValid(board,i*3,j*3,i*3+2,j*3+2)) return false;
}
}
return true;
}
public boolean isValid(char[][] board, int x1, int y1, int x2, int y2){
HashSet<Character> set = new HashSet<Character>();
for(int i = x1; i <= x2; i++){
for(int j = y1; j <= y2; j++){
if(board[i][j] == '.') continue;
if(set.contains(board[i][j])) return false;
else set.add(board[i][j]);
}
}
return true;
}
}
//http://xiaoyaoworm.com/blog/2015/04/14/%E6%96%B0leetcode-hashtable-1-valid-sudoku/
public class Solution {
public boolean isValidSudoku(char[][] board) {
ArrayList<boolean[]> rowList = new ArrayList<boolean[]>();
ArrayList<boolean[]> colList = new ArrayList<boolean[]>();
ArrayList<boolean[]> blkList = new ArrayList<boolean[]>();
for(int i = 0; i < 9; i++){
rowList.add(new boolean[9]);
colList.add(new boolean[9]);
blkList.add(new boolean[9]);
}
for(int i = 0; i < 9; i++){
for(int j = 0; j < 9; j++){
if(board[i][j]=='.') continue;
int c = board[i][j]-'1';
if(rowList.get(j)1 == true || colList.get(i)1 == true || blkList.get(i/3*3+j/3)1 == true){
return false;
} else{
rowList.get(j)1 = true;
colList.get(i)1 = true;
blkList.get(i/3*3+j/3)1 = true;
// here must be divide then multiple, 2/3 will become 0
}
}
}
return true;
}
}