-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSudokuTester.java
More file actions
69 lines (65 loc) · 2.87 KB
/
SudokuTester.java
File metadata and controls
69 lines (65 loc) · 2.87 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
/**
* Tests the correctness of SudokuSolver and SudokuImage
*
* @author Patrick McCarty
*
*/
public class SudokuTester {
/**
* Main method
*
* @param args array of arguments if any exist
*/
public static void main(String[] args) {
int[] testBoard = {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}; /* Represents a Sudoku puzzle board with missing
with missing values represented as 0's */
// int[] correctTestBoard = {5, 3, 4, 6, 7, 8, 9, 1, 2,
// 6, 7, 2, 1, 9, 5, 3, 4, 8,
// 1, 9, 8, 3, 4, 2, 5, 6, 7,
// 8, 5, 9, 7, 6, 1, 4, 2, 3,
// 4, 2, 6, 8, 5, 3, 7, 9, 1,
// 7, 1, 3, 9, 2, 4, 8, 5, 6,
// 9, 6, 1, 5, 3, 7, 2, 8, 4,
// 2, 8, 7, 4, 1, 9, 6, 3, 5,
// 3, 4, 5, 2, 8, 6, 1, 7, 9};
//
// int[] hardBoard = {0, 0, 0, 0, 0, 0, 0, 0, 0,
// 0, 0, 0, 0, 0, 3, 0, 8, 5,
// 0, 0, 1, 0, 2, 0, 0, 0, 0,
// 0, 0, 0, 5, 0, 7, 0, 0, 0,
// 0, 0, 4, 0, 0, 0, 1, 0, 0,
// 0, 9, 0, 0, 0, 0, 0, 0, 0,
// 5, 0, 0, 0, 0, 0, 0, 7, 3,
// 0, 0, 2, 0, 1, 0, 0, 0, 0,
// 0, 0, 0, 0, 4, 0, 0, 0, 9};
//
// int[] thirdBoard = {0, 0, 0, 0, 0, 1, 0, 8, 2,
// 0, 8, 9, 0, 0, 0, 0, 0, 4,
// 0, 4, 0, 8, 0, 9, 6, 0, 0,
// 0, 0, 7, 0, 8, 0, 1, 4, 0,
// 0, 0, 0, 1, 0, 2, 0, 0, 0,
// 0, 5, 1, 0, 6, 0, 3, 0, 0,
// 0, 0, 4, 5, 0, 7, 0, 3, 0,
// 5, 0, 0, 0, 0, 0, 4, 7, 0,
// 3, 7, 0, 4, 0, 0, 0, 0, 0};
//
// int[] startWithOne = {0, 0, 0, 8, 0, 0, 0, 0, 0,
// 7, 8, 9, 0, 1, 0, 0, 0, 6,
// 0, 0, 0, 0, 0, 6, 1, 0, 0,
// 0, 0, 7, 0, 0, 0, 0, 5, 0,
// 5, 0, 8, 7, 0, 9, 3, 0, 4,
// 0, 4, 0, 0, 0, 0, 2, 0, 0,
// 0, 0, 3, 2, 0, 0, 0, 0, 0,
// 8, 0, 0, 0, 7, 0, 4, 3, 9,
// 0, 0, 0, 0, 0, 1, 0, 0, 0};
SudokuSolver.solve(testBoard, true);
}
}