https://github.com/pgvalle/sudoky
https://github.com/pgvalle/sudoky
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pgvalle/sudoky
- Owner: pgvalle
- License: mit
- Created: 2022-02-25T01:31:48.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T08:48:29.000Z (over 2 years ago)
- Last Synced: 2025-01-16T09:51:07.143Z (over 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sudoky
Sudoku solver coded with python. Pretty simple.
If for some odd reason you happened to pop here knowing absolutely nothing about how that backtrack thingy works, i'll explain it briefly. Google [Backtracking](https://www.youtube.com/watch?v=QDia3e12czc) for more.
For starters, backtracking isn't too far of what the name suggests. The program "takes decisions in chain" to advance with solving the problem. If at some point the problem can't be solved, it goes back in the chain and take another decision, and it keep doing it over and over again until we either solve everything or run out of possibilities.
Of course, to take those "decisions in chain" there should have some sort logic on it.
Will you give my project a star? Pretty please :')
Don't forget to search about backtracking! It will be good to learn about it.