sudoku_solver.py Created a Python Script that takes a Sudoku Board, in the form of a List (with 0's for empty cells) and utilizes a Backtracking Algorithm to solve it and output the solution
sudoku_ocr Working on a Python Script that can take a users image and utilize OCR to parse digits and recognize the Sudoku Puzzle, converting it to a List
gui_SudokuSolver.py Working on a Python Script that creates a GUI to view the Sudoku Solver in action, including the Backtracking Algorithm