hidoku
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 = """
7 7
- 22 - 26 34 - 32
- 23 - - - 36 -
- 24 - 42 - - -
- - 13 - - - -
17 - 44 12 - 3 -
47 49 - 10 - - 5
- - - - - - 1
"""
# Solve
res = puzzlekit.solve(problem_str, puzzle_type="hidoku")
# Print solution grid
print(res.solution_data.get('solution_grid', []))
# Visualize (optional)
res.show()