mejilink
📖 Rule Reference: Read full rules on external site
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
15 15 14 10 11 13 14 11
13 14 11 13 14 3 13 13
7 14 10 3 13 14 3 7
14 10 8 11 4 10 11 13
14 11 7 13 7 14 11 7
12 10 11 7 14 9 14 11
7 15 14 9 15 7 15 15
14 11 15 7 15 14 10 11
"""
# Solve
res = puzzlekit.solve(problem_str, puzzle_type="mejilink")
# Print solution grid
print(res.solution_data.get('solution_grid', []))
# Visualize (optional)
res.show()