Sudoku solver: user guide
ƒ RD AAOW FDL; 1.12.2023; 2:34
Page contents
General information
This tool allows you to solve default (9 x 9) sudoku tables.
Solution based on recursive function that builds series of “assumptions”
and finds first one that doesn’t conflict with sudoku game rules. Also
tool uses binary representation of known (7 → 001000000b
) and unknown
(1 or 2 or 6 → 000100011b
) numbers for simplifying solution process.
Warning! This method always finishes with some result (it is finite). But in some cases it can take some time. This behavior is correct for the application.
Controls:
1
–9
– press these numbers while on cells to enter them;- any other character – to clear selected cell;
F5
– to run the solution process:- you will get red cells if your table is unsolvable (has or leads to a duplication of values);
- you will get green cells when a solution is found;
F8
– to clear only found cells;F12
– to clear all cells;F3
– to load the table from file;F4
– to save the table to file;F1
– to get the quick help;←
,→
,↑
,↓
– to move over the field;- mouse buttons – to change values;
Alt
+F4
– to exit the application