Avoidable Rectangle
Strategy:
Unique RectanglesRequires:
Unique Rectangle Type 1Overview
Avoidable Rectangle is similar to Unique Rectangle but involves solved cells. When three cells of a rectangle are already solved with two alternating values, the fourth cell must avoid completing the deadly pattern.
How It Works
- Find four cells forming a rectangle across two boxes.
- Three corners are already solved, using two values that alternate.
- The fourth (unsolved) cell has one of these values as a candidate.
- Eliminate that candidate to prevent the deadly pattern that would allow multiple solutions.
Example
Look for Avoidable Rectangle.
Avoidable Rectangle
Cells r2c9, r2c8, r4c9, and r4c8 form a rectangle across 2 boxes. Three corners are determined with values 4 and 1.
Avoidable Rectangle
If r2c9 were 1, these four non-given cells would form a two-solution rectangle.
Avoidable Rectangle
Avoidable Rectangle assumes a valid puzzle has one solution, so this rectangle must be avoided.
Avoidable Rectangle
So 1 at r2c9 is the candidate that must be removed.
Avoidable Rectangle
Eliminate 1 from r2c9.
Result after applying the technique.
Tips & Patterns
- Avoidable Rectangles use the same uniqueness logic as Unique Rectangles but with solved cells.
- Types 2, 3, and 4 parallel the UR types.
- Look for rectangles where three corners are filled with two alternating digits.