Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.