Thats a really fun puzzle! Its very satisfying to be able to fill in the grid based on so little starting information. Ive come to a solution after some very careful candidate management. You only need to apply the same rules as you would use on a normal sudoku, but making sure you apply them in relation to the four extra boxes at every stage. These hints might help:
- Code: Select all
*-----------*
|...|...|...|
|.A5|A.B|BB.|
|.AA|*.B|BB.|
|---+---+---|
|.*A|*.B|BB.|
|...|...|...|
|.CC|C.D|DD.|
|---+---+---|
|.CC|C.D|DD.|
|.CC|C.D|DD.|
|...|...|...|
*-----------*
Keep your candidates up to date, using all the information available. If you have placed a 5 as shown above, as well as the usual eliminations you can remove the candidate 5 from the cells marked with asterisks
- Code: Select all
*-----------*
|...|...|...|
|.AA|A.B|BB.|
|.AA|A.B|BB.|
|---+---+---|
|.AA|A.B|B55|
|...|...|...|
|.CC|C.D|DD.|
|---+---+---|
|.CC|C.D|DD.|
|.CC|C.D|DD.|
|...|...|.55|
*-----------*
Watch out for singles within the extra four boxes. In the above configuration, if the cells marked are the only remaining options for the number 5, we know that 5 must go in r4c8 to satisfy box B. In normal sudoku we would not be able to place the 5s at this point.
- Code: Select all
*-----------*
|...|...|...|
|.A*|A.B|BB.|
|.A*|A.B|BB.|
|---+---+---|
|.5A|5.B|BB.|
|...|...|...|
|.CC|C.D|DD.|
|---+---+---|
|.CC|C.D|DD.|
|.CC|C.D|DD.|
|...|...|...|
*-----------*
Make use of box/line interactions that involve the extra four boxes. In the above example, if places marked 5 are the only cells in row 4 with candidate 5, you can remove candidate 5 from the cells marked *
- Code: Select all
*-----------*
|...|...|...|
|.AA|A.B|BB.|
|.AA|A.B|BB.|
|---+---+---|
|*5A|5**|***|
|...|...|...|
|.CC|C.D|DD.|
|---+---+---|
|.CC|C.D|DD.|
|.CC|C.D|DD.|
|...|...|...|
*-----------*
Conversely, if the marked cells are the only cells in block A with candidate 5, then all the marked eliminations can be made.
I hope at least some of that makes sense! It's not easy to explain some things when the language of sudoku doesn't quite cater for this type of puzzle... Let me know if some of it needs clarifying.
Has anyone seen this type of puzzle elsewhere? I'd be very interested in seeing some more of them!
Chris