/Python-SudoKu-Solver

Short Python script that solves a Sudoku puzzle using backtracking

Primary LanguagePython

SudoKu Solver

Main Aims:

  • Read base case puzzle in from text file
  • Display board before solution is implemented
  • Back tracking algorithm that solves the base case puzzle

Solution

Displayed Puzzle | Solved Puzzle

Side Note

This project has been created for two purposes:

  1. Practice Python Coding
  2. Learn the Back Tracking Algorithm

There are plenty of solutions which are much more efficient out there. I'm just using this as a learning opportunity.