Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jessicarod7/sudoku-solver
ICS4U1 Sudoku Assignment
https://github.com/jessicarod7/sudoku-solver
ics4u1 python2 sudoku sudoku-solver
Last synced: 3 days ago
JSON representation
ICS4U1 Sudoku Assignment
- Host: GitHub
- URL: https://github.com/jessicarod7/sudoku-solver
- Owner: jessicarod7
- Created: 2019-03-07T15:25:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-25T15:07:52.000Z (over 5 years ago)
- Last Synced: 2024-08-28T01:11:08.964Z (3 months ago)
- Topics: ics4u1, python2, sudoku, sudoku-solver
- Language: Python
- Size: 166 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku Solver
[This simple program](sudoku-solver.py) will take a sudoku puzzle file in the below format, and solve it, saving the solution to a separate file.
Made for ICS4U1, or Grade 12 Computer Science, in Python 2.
## Example Sudoku Puzzle Format
```
906137258
370045601
125698047
239784516
584060723
617352089
851476902
702513864
463829075
```A zero represents an empty space. The file, preferably a ```.txt``` file, **must** be 9 lines of 9 characters.