Fixed check_correct

This commit is contained in:
Lukas Wölfer
2019-04-21 02:04:03 +02:00
parent 7f055eb302
commit 6f19d87e86
5 changed files with 32 additions and 17 deletions

15
test/helper.py Normal file
View File

@@ -0,0 +1,15 @@
from .context import shenzhen_solitaire
from shenzhen_solitaire import solver
from .boards import my_board
def main() -> None:
A = solver.solve(my_board)
for _, B in zip(range(1), A):
print(*B, sep='\n')
print(len(B))
if __name__ == "__main__":
main()