Logic Games

A small collection of logic and puzzle games. Built to be extended.

Logic Lock

Four variants on one page. Scroll to play any—same playstyle, different sizes and rules.

← Back

Mini (2 dials)

Logic Lock Mini

Two linked dials (A, B). Quick warm-up: bring both to 0 with three twist types.

State

{
  "dials": [
    3,
    2
  ],
  "moves": 0
}

Actions

Classic (3 dials)

Logic Lock (Classic)

Three interlinked dials (A, B, C). Each move nudges multiple dials at once. Bring all dials back to 0.

State

{
  "dials": [
    2,
    1,
    4
  ],
  "moves": 0
}

Actions

Plus (4 dials)

Logic Lock Plus

Four dials in a cycle (A→B→C→D→A). Each twist moves two neighbors; Spin All shifts each by 1–4. Bring all to 0.

State

{
  "dials": [
    2,
    0,
    4,
    1
  ],
  "moves": 0
}

Actions

Max (5 dials)

Logic Lock Max

Five dials in a cycle. Each twist moves two neighbors; Spin All applies +2,+3,+4,+1,+2. Hardest variant—bring all to 0.

State

{
  "dials": [
    1,
    3,
    0,
    4,
    2
  ],
  "moves": 0
}

Actions