sudoku/sudoku/solvers/__init__.py
Eryn Wells c9a86d0fdc Add dlx solver (this is still a WIP)
The solver builds the constraint matrix. I have not fully verified its correctness, nor does the thing actually do the thing yet.
2017-10-16 12:25:30 -07:00

6 lines
102 B
Python

# Eryn Wells <eryn@erynwells.me>
'''
A library of Sudoku solvers.
'''
from . import backtracker, dlx