Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nekruzash/sudoku-solver
A sudoku solver program that solves a sudoku game board using backtracking method and recursion.
https://github.com/nekruzash/sudoku-solver
Last synced: about 13 hours ago
JSON representation
A sudoku solver program that solves a sudoku game board using backtracking method and recursion.
- Host: GitHub
- URL: https://github.com/nekruzash/sudoku-solver
- Owner: NekruzAsh
- License: mit
- Created: 2023-11-11T02:06:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-06T02:58:26.000Z (12 months ago)
- Last Synced: 2024-03-26T16:27:47.018Z (8 months ago)
- Language: C++
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sudoku-Solver
A simple Sudoku solver console application that uses backtracking method and recursion to recursively fill in the
empty cells in the game board and solve the game.# What I Learned
* Recursion, how a function can be called back within its definition in a loop until a solution is found to be true.
* Backtracking, how the backtracking method can be combined with recursion to repeatedly test new guesses until it becomes true.
* Data Structures, working and manipulating a common data structure.