blob: ae205b63ffa5a39844dd4d71990c25f7d96137da (
plain)
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
|
#ifndef __INCLUDED_SUDOKUSOLVER_SUDOKU__
#define __INCLUDED_SUDOKUSOLVER_SUDOKU__
#include "cell.h"
class Sudoku {
public:
Sudoku();
Sudoku(const Sudoku & other);
void assign(const Sudoku & other);
int compare_and_assign(const Sudoku & other);
inline int value(int row, int column) const {
return sudoku_cell[row][column].value();
}
void set_value(int row, int column, int cell_value);
void reset();
void reset_cell(int pos_row, int pos_column);
int solve_constraints(int pos_row, int pos_column);
int solve_constraints();
int solve_coverage();
private:
Cell sudoku_cell[9][9];
};
#endif // __INCLUDED_SUDOKUSOLVER_SUDOKU__
|