Shirokuro
Aliases: Shirokuro-link, white-black-link
📖 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 = """
10 10
b - w b w - b - b -
b - w w - w b w - -
w b w w - b b b - b
w - b - - - w - w -
- w b w w b b b - w
b b - b - - - w w b
b - b b - b w b - w
- - - w - - - - b w
w w w b w - w - - b
w - - - b w - w - b
"""
# Solve
res = puzzlekit.solve(problem_str, puzzle_type="shirokuro")
# Print solution grid
print(res.solution_data.get('solution_grid', []))
# Visualize (optional)
res.show()