We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 980c5da commit ef47158Copy full SHA for ef47158
Sudoku-Solver/src/sudoku/model/SudokuBoard.java
@@ -42,6 +42,10 @@ public SudokuBoard(int boxRows, int boxCols) {
42
* <p>Setting a cells content to a number removes this number from the
43
* possible values in all other cells sharing a structure with the specified
44
* cell.</p>
45
+ * <p>A sudoku is seen as unsolvable if and only if a structure contains a
46
+ * duplicate or a cell that can not be set to any number without causing a
47
+ * duplicate. It does not check if every structure can contain all numbers.
48
+ * </p>
49
*
50
* @throws IllegalStateException Trying to overwrite a fixed cell.
51
*/
0 commit comments