Yes, you can play Nurikabe on a phone or without a mouse using Lizely's compact 4 by 4 Nurikabe board, which exposes the full interaction to touch, dedicated mark buttons, and a complete keyboard layer. Every non-clue cell cycles through three explicit states (unknown, wall, and island) with a single tap, and the same interaction is mirrored by W or Space for wall, I for island, Delete or Backspace to clear, and Enter to check on the keyboard. The board fits a 390-pixel phone width without horizontal scrolling, with a four-column layout, square native buttons, minimum-height status row, and wrapping controls. Every cell exposes its row, column, and state to assistive technology, so the puzzle is playable without a pointer, without color vision, and without a daily connection. The three numbered clue cells remain fixed islands, leaving 13 editable cells that can each become wall or island, and the validator checks the finished board against the standard Nurikabe rule set rather than against a hidden bitmap.

Touch, Click, and Keyboard Controls for Nurikabe
The Nurikabe board accepts three input styles that map onto the same cell model, so phone, desktop, and keyboard-only players reach the exact same outcome. A tap or click on any non-clue cell cycles through unknown, wall, and island. Three dedicated buttons labeled Wall, Island, and Clear sit below the grid and apply the same change to the currently selected cell. The keyboard layer mirrors that model: Arrow keys move a visible cursor, W or Space marks the current cell as wall, I marks it as island, and Delete or Backspace returns it to unknown.
The numbered cells — 2 in the upper-left, 1 in the second row third column, and 5 in the third row fourth column — are fixed islands and ignore taps, button presses, and keyboard marks. The shared double-Escape gesture opens a spreadsheet-style boss screen and the same gesture returns to the puzzle, which keeps the board hidden from shoulder-surfing when a phone is tilted up on a commute.
| Input | Action | Effect on current cell |
|---|---|---|
| Tap or click | Cycle | unknown to wall to island to unknown |
| Wall button | Direct mark | Mark selected cell as wall |
| Island button | Direct mark | Mark selected cell as island |
| Clear button | Direct mark | Return selected cell to unknown |
| Arrow keys | Move cursor | Step through the 4 by 4 grid |
| W or Space | Keyboard mark | Mark current cell as wall |
| I | Keyboard mark | Mark current cell as island |
| Delete or Backspace | Keyboard clear | Return current cell to unknown |
| Enter | Validate | Run the rule check on the board |
How to Play Nurikabe on a Phone or Without a Mouse
- Open the Nurikabe board in a phone browser or any desktop browser; the four-column layout fits a 390-pixel screen without horizontal scroll, so the cells stay aligned under a thumb.
- Tap any non-clue cell to begin cycling. The cell moves from unknown to wall on the first tap, to island on the second, and back to unknown on the third. The three numbered cells stay fixed as islands regardless of input.
- Use the dedicated Wall, Island, and Clear buttons under the grid to set a mark directly when cycling is inconvenient, especially on a small screen where repeated taps can be slow.
- Switch to keyboard mode by tapping a cell once to position the cursor, then move with the Arrow keys. Press W or Space for wall, I for island, and Delete or Backspace to clear a mark. The keyboard and touch paths produce the same final state.
- Reason about the rules as you mark: every orthogonally connected white island must hold exactly one numbered clue and as many cells as that clue, all black cells must form one connected wall, and no 2 by 2 block may be entirely black.
- Mark all 16 cells before pressing the Check button or pressing Enter. An incomplete board is reported as a request to continue, with no mistake recorded.
- Read the validator's response. A correct full board awards exactly 1,000 points and freezes the run; the first wrong full board stays editable so you can repair it; a second wrong full board deadlocks the run until Restart.
- Use Restart to clear every non-clue mark, restore the three fixed clues, return the cursor to the first editable cell, and reset both the score and the mistake counter.
Reading Wall, Island, and Unknown States
The board always shows each state explicitly so the puzzle remains readable without color cues, which matters on a phone in bright light or for players with reduced color vision. A black-filled cell is a wall. A light cell with a centered dot is an island. A blank light cell is still unknown and counts toward the incomplete-check prompt rather than the wall. The numbered cells remain a numbered cell across all states and never change their role.
This three-state model avoids a quieter form of dependency on color. The validator never compares the board against a hidden bitmap, so the rule check sees the same final states the player sees on screen. The accessible role for each cell also exposes its row, column, current state, and selection position to assistive technology, so a screen reader can announce the cell contents in the same way a sighted player would read the cell.
| Visual on the board | State | Role in the puzzle |
|---|---|---|
| Black fill | Wall | Sea and connectivity pool |
| Light cell with centered dot | Island | White component area |
| Blank light cell | Unknown | Editable, not yet committed |
| Numbered cell | Fixed island | Anchor for one clue area |
Scoring, Mistakes, and the Repair Window
The score and mistake policy are designed so that phone play does not punish the small mistakes that come from thumbs. Checking an incomplete board records nothing. The first complete board that violates any Nurikabe rule stays editable, so you can repair a wrong mark rather than restart from scratch. The second wrong complete board deadlocks the run until Restart is pressed; Restart clears every non-clue mark, restores the three fixed clues, returns the cursor to the first editable cell, and resets the score and mistake counter.
A correct full board awards exactly 1,000 points. Completion and deadlock are both terminal states: board taps, mark buttons, keyboard marks, cursor moves, and later checks cannot alter the frozen result. Time is intentionally absent from the score, because the board is fixed and replaying it through memory becomes easier on later attempts.
This scoring line matters when comparing phone play to mouse play. Because the validator applies every rule on each check rather than after a timer expires, the only difference between phone and desktop is the input device. Touch tap, mark button, and keyboard mark all produce the same final state, and the validator accepts any one of them on every cell.
Why a 4 by 4 Board Suits a Phone
The board is sized to make phone play feel natural rather than cramped. A 4 by 4 grid holds 16 cells, and the three fixed numbered clues — 2, 1, and 5 — sum to 8, so the finished board has 8 white island cells and 8 black wall cells. That balance keeps the cursor close to every neighboring cell and keeps the rules dense enough that each mark changes a meaningful constraint.
The compact four-column layout, square native buttons, minimum-height status row, and constrained content width are designed to fit a 390-pixel phone without horizontal scrolling. Buttons stay large enough for a confident tap, the status text wraps rather than overflowing, and the board stays in place under a thumb during a bus ride. The product runs locally in the browser as a small React client game, sends no board state to a server, requests no account, and downloads no daily puzzle, which means the phone-friendly interaction is identical at home, on a train, or offline.
For accessibility beyond the phone, the release also verifies the fixture independently. An exhaustive oracle evaluates all 8,192 assignments of the 13 non-clue cells using its own neighbor routine, breadth-first component construction, clue lookup, area comparison, wall connectivity check, and 2 by 2 scan, separate from the runtime validator. Exactly one assignment survives, so the board always has a unique solution whether it is played on a phone, a laptop, or a desktop without a mouse.
For the standard rule definitions that the runtime validator applies, the Nikoli Nurikabe page states that each island holds exactly one number with that many cells, all black cells form one connected wall, and no 2 by 2 square is entirely black. Those rules are the contract the validator checks, so phone play cannot drift from the standard.
If you want a similar compact logic puzzle built around a phone-first layout and full keyboard support, the Hidato phone and keyboard guide walks through the same input model on a number-path board.