Battleships puzzle strategy reduces a 5-by-5 fleet-placement challenge to a small set of proven placements: one straight cruiser of length 3, one destroyer of length 2, and one submarine of length 1 must occupy exactly six cells, match every row and column clue, and never touch another ship even diagonally. The board is solved in six clean ship actions for a score of 940, so the puzzle rewards precise logic rather than naval combat intuition. Every clue value along the top and left edges is a fixed constraint, and the no-touch rule acts as a sieve that removes bad candidates once a single segment is locked in. Treat the printed numbers as the skeleton of the solution, the no-touch rule as the pruning logic, and the fleet shapes as the final assembly step. Used together, those three layers turn the grid from a free-form placement exercise into a short deduction chain that any player can finish in a few minutes of focused work.

How the Battleships Puzzle Works
The Battleships Puzzle on Lizely is a five-by-five solitaire logic grid, not the two-player guessing game popularized on paper pads in school. Conceptis describes the same one-player rule family: a small fleet of straight ships is hidden on a fixed grid, and the solver must place the entire disclosed fleet so that every row and column contains exactly the printed number of ship segments, every ship is straight, and no two ships touch each other at an edge or corner. The Lizely board uses one length-3 cruiser, one length-2 destroyer, and one length-1 submarine, for a total of six occupied cells. The clues are part of the puzzle, not hints you can ignore; until every clue is satisfied and the full fleet fits, the board is incomplete. For a deeper walkthrough of the underlying fleet rules, the Battleships Puzzle rules guide covers the placement contract in detail. Open the Battleships Puzzle in any modern browser to see the disclosed fleet, the fixed clues, and the responsive grid of semantic buttons that respond to both keyboard and pointer input.
Because every decision stays on one screen, the puzzle behaves like a small proof rather than a guessing game. Each Space press toggles a ship segment, Enter toggles an optional water mark that does not affect scoring, and the arrow keys move a single selection cursor across the grid. After every action, the validator groups orthogonally adjacent occupied cells into connected components, checks that each component is collinear, compares the sorted lengths against the declared fleet of [1, 2, 3], and looks across diagonal boundaries between different components. Line totals, total ship cells, and out-of-range input are all checked at the same time, so partial placements that ignore any constraint quickly surface as a contradiction.
The Fixed Clues on This Board
Every row and every column of this board prints a single integer that counts the ship segments inside that line. The values are part of the puzzle contract, which means you cannot solve the grid without honoring them, but they also remove huge amounts of guesswork. Two clues in particular do most of the heavy lifting: the row clue of 0 and the column clue of 0 force an entire line to be water, which instantly blocks every ship segment from sitting on those five cells.
| Line | 0 | 1 | 2 | 3 | 4 | Sum |
|---|---|---|---|---|---|---|
| Row clues (top to bottom) | 3 | 0 | 1 | 1 | 1 | 6 |
| Column clues (left to right) | 1 | 2 | 1 | 0 | 2 | 6 |
The row totals and column totals each sum to 6, which equals the size of the disclosed fleet. That single arithmetic fact is the first strategic checkpoint: once every clue reads as satisfied, the fleet must be complete, with no extra cells and no missing cells. Anything that pushes a line over its clue is rejected, so a row that wants 1 cannot absorb a 3-ship cruiser in that row under any circumstance.
Battleships Puzzle Strategy to Solve the Grid
- Convert zero clues into water. Mark every cell in the row with clue 0 and every cell in the column with clue 0 as water. This removes one full row and one full column from the placement search and immediately forbids any ship from passing through those five cells each.
- Anchor the longest ship first. Place the length-3 cruiser before any other segment. With only six occupied cells total, the cruiser carries the largest share of the line totals and has the fewest valid orientations on a five-by-five grid, so locking it in early removes the most uncertainty.
- Apply the no-touch rule outward from each confirmed segment. Whenever a cell is marked as a ship, every one of its eight neighbors becomes ineligible for a different ship. On a 5x5 grid that single rule eliminates a large percentage of the remaining candidates.
- Match the column clue of 2. Two of the columns want exactly two ship segments each, and at most one of those columns can carry the cruiser alone. The remaining 2-value column must combine with either the destroyer or the submarine.
- Place the length-2 destroyer. With the cruiser anchored and the no-touch buffer drawn, the destroyer fits into a much smaller set of legal orientations. Keep the destroyer orthogonal to the cruiser where possible to avoid crossing a diagonal buffer.
- Drop the length-1 submarine last. The submarine is a single isolated cell, so it only needs to land on a remaining candidate that satisfies its row clue, its column clue, and the no-touch rule around both longer ships.
- Verify every clue and the full fleet. Confirm that each row clue and each column clue is matched exactly, that the sorted ship lengths equal [1, 2, 3], that no two ships touch orthogonally or diagonally, and that the total occupied count is exactly six.
The disclosed solution on this particular board occupies the zero-based cells 0, 1, 2, 14, 19, and 21. Cells 0, 1, and 2 form the cruiser across the top row, cells 14 and 19 form the destroyer running vertically through the last column, and cell 21 is the lone submarine. The remaining 19 cells are water, since 25 cells total minus 6 ship cells leaves 19 water cells. Every clue reads as satisfied under that arrangement, and the sorted fleet lengths match [1, 2, 3] exactly.
Scoring, Restart, and Keyboard Shortcuts
The board starts you at a score of 1,000 and applies a small penalty for every ship action, which the validator counts as each Space press that toggles a segment. The score formula is straightforward and uses only what you can see on screen: Score = max(0, 1,000 − 10 × ship actions). Six clean actions reduce the score by 60, so 1,000 minus 60 lands the final board at 940 points. Pressing Space on a wrong cell costs the same 10 points whether you correct it next turn or wait several moves, so deliberate play is rewarded over tentative placements that get undone. Water marks made with Enter do not affect the score; they are personal reasoning aids and the validator ignores them entirely.
If the board becomes cluttered with reasoning marks or you want to start over, press the restart control to clear ships, water marks, score, move count, and contradiction state in a single action. Double-press Escape to swap in the shared simulated spreadsheet boss cover, then double-press Escape again to return to the board with the fleet in place. A completed best score may be stored in localStorage so you can revisit your best run, but no account, no audio, and no pointer-only gesture is required to play. The keyboard alone is enough to navigate, mark, and validate the board.
Common Tactical Mistakes to Sidestep
The fastest way to lose points on this puzzle is to place segments that violate the no-touch rule at a corner, because a diagonal collision is rejected only after both components exist, and you may have spent several moves building toward that contradiction. A second common trap is treating the cruiser as flexible: a length-3 ship must occupy three cells in a single row or a single column, and any connected component that spans more than one row and more than one column is treated as a bent ship and rejected. Third, do not mark more than six ship cells; the validator rejects any board that exceeds the disclosed fleet size, so even a correct segment in the wrong spot can push you over the limit. Finally, remember that water marks are optional reasoning aids, not constraints; if a water mark blocks a segment you actually need, clear it before committing to the placement.
Related Logic Puzzles Worth Trying Next
The same family of fixed-grid logic puzzles rewards similar deduction habits, so once the Battleships board feels routine, several neighboring puzzles can stretch the same skills. The Tents Puzzle pairs four trees with four tents while matching every row and column clue and keeping all tents apart, including diagonally, which mirrors the no-touch rule used here. The Hitori Puzzle shades repeated numbers from a five-by-five grid while keeping black cells apart and every remaining white cell connected, sharing the small-grid, clue-driven format. The Heyawake Puzzle shades exactly one cell in each room while preserving a connected white area and blocking three-room corridors, which is another fixed-grid constraint puzzle that rewards careful bookkeeping.