MindYourPuzzleMindYourPuzzle

Sumplete · strategies

Extremes first, then lock.

Every cell is either kept or deleted. The targets constrain which subsets are possible — and most lines have very few.

01

Full lines

If a row's target equals the sum of all its cells, keep everything — nothing to delete. If a column's target is achievable only one way, mark the rest immediately.

10532
Row target 10, cells 5+3+2 = 10. The full row already hits the target — keep every cell, cross nothing.
02

Single-cell elimination

If removing one specific cell makes the row's remaining sum match the target exactly, and the column still works too — that cell is deleted. Scan for single-removals first.

12725
Row target 12 over 7,2,5 (sum 14). Only crossing the 2 leaves 7+5 = 12 — a forced single removal.
03

Cross-referencing row + column

A cell sits in one row and one column. If keeping it makes EITHER target impossible, it's deleted. If deleting it makes either impossible, it's kept. Test one cell at a time.

869788342513426
A solved 3×3 with row targets (right) and column targets (top). Crossed cells are deleted; the remaining kept cells sum to every target. The centre 1 is forced out by both its row and its column.
04

Forced keeps from running totals

As you delete cells, the remaining sum in that line drops. When it equals the target, every remaining unmarked cell in the line is kept (deleting more would undershoot).

05

Order of attack

Full lines → single-removal scans → cross-reference stuck cells → forced-keep locks. Cycle until done. Our puzzles are always deduction-solvable.


Try today’s puzzle →

Sumplete category

Sumplete strategies · MindYourPuzzle