Exemplo n.º 1
0
 public Sudoku CreateNewSolution()
 {
     Puzzle = PopulateCells();
     Puzzle = SortGrid(Puzzle);
     return(Puzzle);
 }
Exemplo n.º 2
0
 public Generator()
 {
     Puzzle = new Sudoku();
 }
Exemplo n.º 3
0
 public Check(Sudoku puzzle)
 {
     CurrentSolution = puzzle;
 }