Rectangle Elimination
Breaking Deadly Patterns
Rectangle Elimination encompasses various techniques for avoiding deadly rectangle patterns — configurations that would allow multiple solutions. It's closely related to Unique Rectangle.
- Goal: Prevent formations that would create multiple solutions
- Pattern: Rectangles spanning 2 rows, 2 columns, and 2 boxes
- Method: Eliminate candidates that would complete deadly patterns
- Difficulty: Advanced — requires understanding uniqueness
The Concept
A valid Sudoku has exactly one solution. Rectangle Elimination uses this fact: if completing a rectangle with specific candidates would allow diagonal swapping (creating multiple solutions), those candidates can be eliminated.
Deadly Patterns
Types of Rectangle Elimination
3 corners locked (only the pair), 1 corner has extra candidates → eliminate the pair from that corner.
2 corners have the same extra candidate → that candidate must be true in one; eliminate from cells seeing both.
Types 3-6 handle more complex configurations with different extra candidates and positions.
Detection Tips
Related Techniques
Uniqueness Techniques
AdvancedUnique Rectangle
The foundational technique for rectangle-based uniqueness eliminations.