-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSudoku.java
More file actions
163 lines (143 loc) · 4.21 KB
/
Copy pathSudoku.java
File metadata and controls
163 lines (143 loc) · 4.21 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package backtracking;
public class Sudoku {
public static boolean sudokuSolver(int[][] sudoku, int row, int col) {
// base
if (row == 9) {
return true;
}
// recursion
int nextRow = row, nextCol = col + 1;
if ( col + 1 == 9) {
nextRow = row + 1;
nextCol = 0;
}
if (sudoku[row][col] != 0) {
return sudokuSolver(sudoku, nextRow, nextCol);
}
for (int digit = 1; digit <= 9; digit++) {
if (isSafe(sudoku, row, col, digit)) {
sudoku[row][col] = digit;
if (sudokuSolver(sudoku, nextRow, nextCol)) { // sol exists
return true;
}
sudoku[row][col] = 0;
}
}
return false;
}
public static boolean isSafe(int[][] sudoku, int row, int col, int digit) {
// col
for (int i = 0; i <= 8; i++) {
if (sudoku[i][col] == digit) {
return false;
}
}
// row
for (int j = 0; j <= 8; j++) {
if (sudoku[row][j] == digit) {
return false;
}
}
// grid
int sr = (row / 3) * 3;
int sc = (col / 3) * 3;
// 3*3 grid
for (int i = sr; i < sr + 3; i++) {
for ( int j = sc; j < sc + 3; j++) {
if (sudoku[i][j] == digit) {
return false;
}
}
}
return true;
}
public static void printSudoku(int sudoku[][]) {
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
System.out.print(sudoku[i][j] + " ");
}
System.out.println();
}
}
public static void main(String[] args) {
int[][] sudoku = {
{5, 3, 0, 0, 7, 0, 0, 0, 0},
{6, 0, 0, 1, 9, 5, 0, 0, 0},
{0, 9, 8, 0, 0, 0, 0, 6, 0},
{8, 0, 0, 0, 6, 0, 0, 0, 3},
{4, 0, 0, 8, 0, 3, 0, 0, 1},
{7, 0, 0, 0, 2, 0, 0, 0, 6},
{0, 6, 0, 0, 0, 0, 2, 8, 0},
{0, 0, 0, 4, 1, 9, 0, 0, 5},
{0, 0, 0, 0, 8, 0, 0, 7, 9}
};
if (sudokuSolver(sudoku, 0, 0)) {
System.out.println("Solution exists");
printSudoku(sudoku);
} else {
System.out.println("Solution does not exist");
}
}
}
// TC: O(9^(n^2)) | SC: O(n^2)
// For a fixed 9x9 board, SC is O(1) (constant space)
// Write a function to complete a Sudoku
/*
Sodoku Solver (LeetCode 37)
https://leetcode.com/problems/sudoku-solver/description/
class Solution {
public void solveSudoku(char[][] board) {
sudokuSolver(board, 0, 0);
}
public static boolean sudokuSolver(char[][] sudoku, int row, int col) {
// base
if (row == 9) {
return true;
}
// recursion
int nextRow = row, nextCol = col + 1;
if (col + 1 == 9) {
nextRow = row + 1;
nextCol = 0;
}
if (sudoku[row][col] != '.') {
return sudokuSolver(sudoku, nextRow, nextCol);
}
for (char digit = '1'; digit <= '9'; digit++) {
if (isSafe(sudoku, row, col, digit)) {
sudoku[row][col] = digit;
if (sudokuSolver(sudoku, nextRow, nextCol)) {
return true;
}
sudoku[row][col] = '.';
}
}
return false;
}
public static boolean isSafe(char[][] sudoku, int row, int col, char digit) {
// col
for (int i = 0; i <= 8; i++) {
if (sudoku[i][col] == digit) {
return false;
}
}
// row
for (int j = 0; j <= 8; j++) {
if (sudoku[row][j] == digit) {
return false;
}
}
// grid
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 (sudoku[i][j] == digit) {
return false;
}
}
}
return true;
}
}
*/