Skip to content

Kakkuru

Aliases: Latin Sum

📖 Rule Reference: Read full rules on external site

🎮 Play Online: Janko


Input Format

TBD

Output Format

TBD

Examples

Python Quick Start

Use the following code to solve this puzzle directly:

import puzzlekit

# Raw input data
problem_str = """
4 4
- 3 5 -
 4 6 - -
 - - 7 4
 5 - - 1
"""

# Solve
res = puzzlekit.solve(problem_str, puzzle_type="kakkuru")

# Print solution grid
print(res.solution_data.get('solution_grid', []))

# Visualize (optional)
res.show()

Solution Output

4 4
1 3 5 2
 4 6 2 1
 2 1 7 4
 5 2 1 1