Documentation for the Enigma puzzle collection
A logic puzzle where you fill numbered rooms while respecting the ripple constraint.
Room Constraint: Each room (region) must contain all consecutive integers from 1 to N, where N is the number of cells in that room.
Ripple Constraint: If the same number N appears twice in the same row or column, there must be at least N cells between them.
In a row: 2 _ _ 2 is valid (2 cells between the 2s)
In a row: 2 _ 2 is invalid (only 1 cell between the 2s)
Puzzles are pre-generated offline using a solver that verifies unique solvability.