-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSudoku.java
49 lines (40 loc) · 1.36 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
package com.ssaurel.sudoku;
public class Sudoku {
// we define a simple grid to solve. Grid is stored in a 2D Array
public static int[][] GRID_TO_SOLVE = {
{9, 0, 0, 1, 0, 0, 0, 0, 5},
{0, 0, 5, 0, 9, 0, 2, 0, 1},
{8, 0, 0, 0, 4, 0, 0, 0, 0},
{0, 0, 0, 0, 8, 0, 0, 0, 0},
{0, 0, 0, 7, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 2, 6, 0, 0, 9},
{2, 0, 0, 3, 0, 0, 0, 0, 6},
{0, 0, 0, 2, 0, 0, 9, 0, 0},
{0, 0, 1, 9, 0, 4, 5, 7, 0},
};
private int[][] board;
public static final int EMPTY = 0; // empty cell
public static final int SIZE = 9; // size of our Sudoku.java grids
public Sudoku(int[][] board) {
this.board = new int[SIZE][SIZE];
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
this.board[i][j] = board[i][j];
}
}
}
public void display() {
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
System.out.print(" " + board[i][j]);
}
System.out.println();
}
System.out.println();
}
public static void main(String[] args) {
Sudoku sudoku = new Sudoku(GRID_TO_SOLVE);
System.out.println("Sudoku.java grid to solve");
sudoku.display();
}
}