-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# sudoku-solver | ||
|
||
A simple web interface that solves sudoku puzzles using a backtracking algorithm. Some notes: | ||
A simple web interface that solves sudoku puzzles using a backtracking algorithm. Try it [here](https://bblodfon.github.io/sudoku-solver/sudokuSolver.html)! | ||
|
||
### Notes | ||
|
||
- If the algorithm takes too long to find a solution, the execution is stopped and a message is shown. | ||
- The puzzle generator is made using random variables, so some of the generated puzzles might be unsolvable (an appropriate message is shown when that happens) | ||
- The number of "givens" when generating a new puzzle is 20 (changeable in the script *sudokuSolver.js*). | ||
- Try the puzzle solver [here](https://bblodfon.github.io/sudoku-solver/sudokuSolver.html) | ||
- The number of `givens` when generating a new puzzle is **20** (can be changed in the [code](https://github.com/bblodfon/sudoku-solver/blob/master/sudokuSolver.js)). |