-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathSudoku Solver.java
33 lines (31 loc) · 1.05 KB
/
Sudoku Solver.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
// Runtime: 25 ms (Top 30.53%) | Memory: 41.7 MB (Top 44.25%)
class Solution {
public void solveSudoku(char[][] board) {
solve(board);
}
boolean solve(char board[][]){
for(int i = 0; i<board.length; i++){
for(int j = 0; j<board[0].length; j++){
if(board[i][j] == '.') {
for(char c = '1'; c<='9'; c++){
if(isValid(board, c, i, j) == true){
board[i][j] = c;
if(solve(board) == true) return true;
else board[i][j] = '.';
}
}
return false;
}
}
}
return true;
}
boolean isValid(char board[][], char c, int row, int col){
for(int i = 0; i<9; i++){
if(board[row][i] == c) return false;
if(board[i][col] == c) return false;
if(board[3 * (row/3) + (i/3)][3 * (col/3) + (i % 3)] == c) return false;
}
return true;
}
}