Free The Key
About Free the Key
Free the Key is a sliding puzzle game about clearing a path for a key to reach an exit lock. The game board is a grid packed with rectangular and square blocks of different sizes that can only slide in the direction their orientation allows — horizontal blocks slide left and right, vertical blocks slide up and down. The key block needs a clear lane to reach the exit, and every other block must be moved out of the way.
The puzzle design is systematic. Even the most complex boards have a single optimal solution if you trace the key's required path and identify the minimum set of obstructions that must move to open it. The difficulty comes from obstructions that can only move after another obstruction moves first, creating chains of dependency that require planning multiple moves ahead.
Solving Efficiently
Always trace the key's exit path first and identify only the blocks directly in that path. Then for each blocking block, identify what's preventing it from moving. This top-down dependency analysis produces the solution order far more reliably than random block sliding. Minimum-move solutions are rewarded with a star rating; they require identifying cases where one well-chosen move unblocks two obstructions simultaneously.