Skip to content

Short Python script that solves a Sudoku puzzle using backtracking

Notifications You must be signed in to change notification settings

drippls/Python-SudoKu-Solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.