The solver builds the constraint matrix. I have not fully verified its correctness, nor does the thing actually do the thing yet.
6 lines
102 B
Python
6 lines
102 B
Python
# Eryn Wells <eryn@erynwells.me>
|
|
'''
|
|
A library of Sudoku solvers.
|
|
'''
|
|
|
|
from . import backtracker, dlx
|