Example #1
0
 protected internal SudokuCellSolve(CellIndices ci, DictionaryPossible dp)
 {
     numbers      = dp.copy();
     cellIndicies = new CellIndices(ci.row, ci.col);
 }
Example #2
0
 public SudokuCellSolve(int row, int col)
 {
     numbers      = new DictionaryPossible();
     cellIndicies = new CellIndices(row, col);
 }