Add solvers package
This commit is contained in:
parent
301a56904c
commit
77456d5114
1 changed files with 8 additions and 0 deletions
8
sudoku/solvers/__init__.py
Normal file
8
sudoku/solvers/__init__.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Eryn Wells <eryn@erynwells.me>
|
||||
'''
|
||||
'''
|
||||
|
||||
class Solver:
|
||||
def solve(self, sudoku):
|
||||
# TODO: Any subclass of Solver should implement this.
|
||||
raise NotImplementedError
|
Loading…
Add table
Add a link
Reference in a new issue