tenner_grid
Input Format
No input description provided.
Output Format
No output description provided.
Examples
Python Quick Start
Use the following code to solve this puzzle directly:
import puzzlekit
# Raw input data
problem_str = """
6 10
- 7 3 - 0 5 - 8 - 9
- 5 - 2 - 1 - - 6 -
- 1 7 - 8 - - 2 0 9
9 - - - - - 0 - - 2
5 - 9 - 6 8 - - 0 -
34 22 29 13 28 22 15 24 12 26
"""
# Solve
res = puzzlekit.solve(problem_str, puzzle_type="tenner_grid")
# Print solution grid
print(res.solution_data.get('solution_grid', []))
# Visualize (optional)
res.show()