Please forgive me if I've already posted a message similar to the following.
Consider the following three examples.
- Code: Select all
- Unavoidable Set: 4-cell
 +-----------------------------------------------+
 | . 7 . | . . . | . 8 . |
 | . . . | . . . | . . . |
 | . 8 . | . . . | . 7 . |
 +-----------------------------------------------+
- Code: Select all
- Deadly Pattern: 4-cell
 +-----------------------------------------------+
 | . 78 . | . . . | . 78 . |
 | . . . | . . . | . . . |
 | . 78 . | . . . | . 78 . |
 +-----------------------------------------------+
- Code: Select all
- Unique Rectangle: 4-cell DP w/WXYZ where at least one of WXYZ is non-empty
 +-----------------------------------------------+
 | . 78W . | . . . | . 78X . |
 | . . . | . . . | . . . |
 | . 78Y . | . . . | . 78Z . |
 +-----------------------------------------------+
So, what are these called?
- Code: Select all
- Z may be empty
 +-----------------------------------------------+
 | . 7 . | . . . | . 8X . |
 | . . . | . . . | . . . |
 | . 8Y . | . . . | . 78Z . |
 +-----------------------------------------------+
- Code: Select all
- one of X/Y may be empty
 +-----------------------------------------------+
 | . 7 . | . . . | . 8X . |
 | . . . | . . . | . . . |
 | . 8Y . | . . . | . 7 . |
 +-----------------------------------------------+
- Code: Select all
- one of Y/Z may be empty
 +-----------------------------------------------+
 | . 7 . | . . . | . 8 . |
 | . . . | . . . | . . . |
 | . 8Y . | . . . | . 7Z . |
 +-----------------------------------------------+
I call them Unique Rectangles as well because of the non-empty XYZ.
_



