Skip to content

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()

Solution Output

8 8
13 7 12 10 8 8 10 9
4 10 3 13 6 3 13 5
7 12 8 0 8 8 1 5
10 2 0 2 0 2 3 5
12 9 7 13 7 12 10 3
4 2 10 2 10 1 12 10
5 14 10 8 11 5 7 13
6 10 11 5 14 2 10 3