T0nyX1ang / noqx

Extended logic puzzle solver of noq.
https://noqx.tonyxiang.site/
Apache License 2.0
5 stars 0 forks source link

[Feature] Support multiple symbols in a single cell #75

Closed T0nyX1ang closed 1 week ago

T0nyX1ang commented 2 weeks ago

The solver should support puzzles with multiple symbols is a cell.

The example is a Kropki puzzle: https://puzz.link/p?kropki/8/8/123226001op40pa160a0071002309759c0314i

T0nyX1ang commented 1 week ago

The current plan is to move the category key from the last part of a symbol string to the dictionary key, just as the style of edge and line encodings.

The encoding will be converted from:

    symbol: Dict[Tuple[int, int]]

to:

    symbol: Dict[Tuple[int, int, Direction]]