Solving a sudoku puzzle with python and a c++ shared library. The python script is used to inferface with the user. The c++ code use the brute-forecesearch method to solve an incomplete sudoku grid (more information here).
Files required:
- SudokuGrid.hpp;
- SudokuGrid.cpp;
- sudoku_solver.pyx.
The shared library can be generated with the command:
python setup.py build_ext --inplaceAn example of usage is in test.py. This repository is still under development.
- GUI in python;
- More comments in c++ files;
- Generate test files.