-
Notifications
You must be signed in to change notification settings - Fork 0
/
sudoku.java
153 lines (141 loc) · 3.31 KB
/
sudoku.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
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
/*
HARD PUZZLE
9 1 0 0 0 0 0 5 0
0 0 3 0 0 9 0 2 1
0 0 0 4 0 2 0 0 0
0 8 0 0 4 0 9 0 2
0 0 0 0 7 0 0 0 0
5 0 4 0 6 0 0 1 0
0 0 0 5 0 6 0 0 0
2 5 0 7 0 0 8 0 0
0 3 0 0 0 0 0 9 5
------------------
EASY PUZZLE
6 3 0 2 0 8 0 1 0
2 0 0 0 5 0 0 8 9
1 0 9 0 6 0 0 3 0
0 0 8 0 0 6 0 5 0
0 0 0 1 8 7 0 0 0
0 6 0 5 0 0 9 0 0
0 9 0 0 7 0 1 0 6
8 1 0 0 2 0 0 0 5
0 2 0 4 0 3 0 9 7
-----------------
EMPTY PUZZLE
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
-----------------
*/
import java.util.Scanner;
public class sudoku {
public static void main(String[] args) {
int[][] grid = new int[9][9];
Scanner sc = new Scanner(System.in);
System.out.println("Enter your puzzle:");
for (int i = 0; i < grid.length; i++) {
for (int j = 0; j < grid[i].length; j++) {
grid[i][j] = sc.nextInt();
}
}
System.out.println();
System.out.print("Solution:");
long begin = System.currentTimeMillis();
print(nextGrid(grid));
System.out.println("It took: " +(System.currentTimeMillis()-begin)+ "ms");
}
//print 2D array
private static void print(int grid[][]){
System.out.println();
for (int[] gr : grid){
for(int g : gr){
System.out.print(g + " ");
}
System.out.println();
}
}
//nextGrid will return the next filled position of the grid
//after x,y. If x,y are not specified, the first grid position is returned
private static int[][] nextGrid(int[][] grid) {
if(valid(grid)){
return grid;
}
int x = 0;
int y = 0;
while (grid[x][y] != 0) {
if (x < 8) {
x++;
} else {
x = 0;
y++;
}
}
return loop(x, y, grid);
}
private static int[][] nextGrid(int x, int y, int[][] grid) {
if(valid(grid)){
return grid;
}
do{
if (x < 8) {
x++;
} else {
x = 0;
y++;
}
}while (grid[x][y] != 0);
return loop(x, y, grid);
}
//valid will return true if grid(x,y) is not 0 and is valid
//if no x and y are specified, checks whole puzzle
private static boolean valid(int[][] grid){
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
if(!valid(i,j,grid)){
return false;
}
}
}
return true;
}
private static boolean valid(int x, int y, int[][] grid){
if(grid[x][y] == 0){
return false;
}
int count = 0;
for (int i = 0; i < grid.length; i++) {
if (grid[x][i] == grid[x][y]) count++;
if (grid[i][y] == grid[x][y]) count ++;
if (grid[((x/3) * 3) + i/3][((y/3) * 3) + i%3] == grid[x][y]) count++;
if(count>3) return false;
}
return true;
}
//main recursion
private static int[][] loop(int x, int y, int[][] grid){
int count = 0;
while (!valid(grid)) {
if (count > 9) {
grid[x][y] = 0;
return grid;
}
if (grid[x][y] < 9) {
grid[x][y]++;
count++;
} else {
grid[x][y] = 0;
count++;
}
if (valid(x, y, grid)) {
grid = nextGrid(x, y, grid);
}
}
return grid;
}
}