-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudokusolver.java
58 lines (56 loc) · 1.64 KB
/
sudokusolver.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
public class sudokusolver {
public boolean isSafe(char[][] board, int row, int col, int n){
for (int i = 0 ; i <board.length ; i++){
if (board[i][col] == (char) (n + '0')){
return false;
}
if (board[row][i] == (char)(n+'0')) {
return false;
}
}
int sr = (row/3) * 3 ;
int sc = (col/3) * 3 ;
for (int i = sr; i<sr+3; i++){
for (int j = sc; j<sc+3; j++){
if (board[i][j] == (char) (n+'0')) {
return false;
}
}
}
return true;
}
public boolean helper(char[][] board, int row , int col){
if (row == board.length ) {
return true;
}
int newrow = 0;
int newcol = 0;
if (col != board.length) {
newcol = col + 1;
}else{
newrow += 1;
newcol = 0;
}
if (board[row][col] != '.') {
if(helper(board, newrow, newcol)){
return true;
}
}else{
for (int i = 0 ; i<=9; i++){
if (isSafe(board , row, col,i )){
board[row][col] = (char)(i + '0');
if(helper(board, newrow, newcol)){
return true;
}else{
board[row][col] = '.';
}
}
}
}
return false;
}
public void sudokusolver(char[][] baord){
char [][] board = new char[3][3]; // user can write there board here.
helper(board, 0, 0);
}
}