tatamibari
📖 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 = """
8 8
s - - - - - - -
- - s - - v - v
- - - - - - - s
- v - s - - v -
- h - - h - - -
- - - - v - s -
- - - h - - h v
v - h - - s - h
"""
# Solve
res = puzzlekit.solve(problem_str, puzzle_type="tatamibari")
# Print solution grid
print(res.solution_data.get('solution_grid', []))
# Visualize (optional)
res.show()