techwithtim / Sudoku-GUI-Solver

This is a sudoku solver using the backtracking algorithm. It includes a graphical GUI as well as a text based version.
https://techwithtim.net/tutorials/python-programming/sudoku-solver-backtracking/
702 stars 346 forks source link

Clear function Incorrect?? #10

Closed brij1197 closed 4 years ago

brij1197 commented 4 years ago

Line 79 if self.cubes[row][col].value == 0 #This condition is only satisfied when the cell is empty, therefore the function clear becomes ineffective as it tries to clear an empty cell. Please check. I may be wrong.