Update Sudoku Solver to check for naked singles.

This commit is contained in:
Drew Galbraith 2023-04-17 16:48:38 -07:00
parent bcc5b5097e
commit 3dc9f04650
5 changed files with 40 additions and 0 deletions

View file

@ -12,6 +12,9 @@ class Puzzle {
std::string CurrentState();
std::string PencilMarkState();
bool IsSolved();
bool ApplyNextStep();
void AssignSquare(uint8_t id, uint8_t value);
private: