Started working on cv

This commit is contained in:
Lukas Wölfer
2019-04-21 18:44:33 +02:00
parent 6f19d87e86
commit c0568fc188
4 changed files with 119 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ def main() -> None:
A = solver.solve(my_board)
for _, B in zip(range(1), A):
print(*B, sep='\n')
print(len(B))
print(f"Solution: {len(B)}")
if __name__ == "__main__":