I started with this Simple Sudoku puzzle
- Code: Select all
*-----------*
|..3|.65|...|
|...|4..|69.|
|6..|...|4.2|
|---+---+---|
|...|.84|..9|
|.3.|679|.8.|
|4..|12.|...|
|---+---+---|
|8.5|...|..1|
|.19|..6|...|
|...|91.|7..|
*-----------*
After working the puzzle for awhile, I could use colors to eliminate a 2.
I am focusing only on number 2, setup this way.
- Code: Select all
*--------------------------------------------------*
| . . . | . . . | . . . |
| 2 . 2 | . . . | . . . |
| . . . | . . . | . . . |
|----------------+----------------+----------------|
| . 2 . | . . . | . 2 . |
| . . 2 | . . . | 2 . . |
| . . . | . . . | . . . |
|----------------+----------------+----------------|
| . 2 . | . . 2 | . 2 . |
| 2 . . | . . . | 2 . . |
| . 2 . | . . 2 | . . . |
*--------------------------------------------------*
Let's start at r2c1 coded "+" and the conjugate pairing at r2c3 coded "-"
Following the conjugate pairing,
r5c3 is "+" & r4c2 is "-"
r4c8 is "+" & r5c7 is "-"
r8c7 is "+" & c7r8 is "-"
r7c6 is "+" & r9c6 is "-"
r9c2 is "+" & r8c1 is "-" giving this
- Code: Select all
*--------------------------------------------------*
| . . . | . . . | . . . |
| 2+ . 2- | . . . | . . . |
| . . . | . . . | . . . |
|----------------+----------------+----------------|
| . 2- . | . . . | . 2+ . |
| . . 2+ | . . . | 2- . . |
| . . . | . . . | . . . |
|----------------+----------------+----------------|
| . 2 . | . . 2+ | . 2- . |
| 2- . . | . . . | 2+ . . |
| . 2+ . | . . 2- | . . . |
*--------------------------------------------------*
Finally cell r7c2 can see "+" from r4c2 and it can see a "-" from r7c6.
So I thought I could eliminate 2 from r7c2, but that is an error per Simple Sudoku.
What is wrong with my understanding of Colors?