- Solves sudoku grid
- Made for a showcase
- Code will not be maintained
- pygame
- Run main.py and choose a grid to solve
- Press enter in the window to start solving
- Edit file
constants.py:draw_while_solve = True- If true, allows drawing of the grid while the grid is solved
debug = True- If true, creates a
profile.pstatcProfile file upon closing the program using the proper close button
- If true, creates a
- Optimize
solve.py:81(is_safe) - Change data structure to numpy array
- Implement multiprocessing support so solving is not bottlenecked by window's FPS