Sudoku generator and solver in python
I am making a sudoku generator and solver project in Python for a school project and I ran into a couple of errors. The code itself does not have any mistakes, but the implementation is incorrect, so I’m stuck. Here is the code: from tkinter import * import random class SudokuBoard: def __init__(self, master): self.master… Read More Sudoku generator and solver in python