Rectangle Validation
Use a step-by-step test for every move.
Read nextMistakes
The most frequent beginner mistake is focusing only on area. A rectangle may have the correct number of cells and still be wrong because it includes two clue cells or blocks another clue from forming any legal rectangle later.
Another common mistake is treating a locally valid shape as globally safe. In Shikaku, one placement can silently damage the remaining board. If a move creates an awkward isolated strip or leaves a nearby clue with impossible dimensions, that move was not really helping.
Players also often underuse the board edges. Borders and corners reduce the number of possible rectangles dramatically. If you ignore those constraints and think only in abstract shapes, you miss some of the easiest deductions available.
The good news is that these mistakes are easy to correct once you start checking rectangles in the right order: clue count, area, overlap, and then board-wide consequences.
Use a step-by-step test for every move.
Read nextTry again with cleaner move selection.
Play practiceRevisit earlier daily boards and spot these patterns.
Browse archive