Here's as far as I get without ambiguity (or so I think):
- Code: Select all
.--------------.------------------------.------------.
| 2 1 9 | 4 8 5 | 36 7 36 |
| 8 6 3 | 9 1 7 | 5 2 4 |
| 7 45 45 | 26 3 26 | 8 9 1 |
:--------------+------------------------+------------:
| 15 9 6 | 7 25 13+2 | 4 8 23 |
| 3 45 8 | 1(26)+5 9 4(26)+1 | 12 56 7 |
| 14+5 2 7 | 35+16 46+5 8 | 13 56 9 |
:--------------+------------------------+------------:
| 9 8 1 | 3(26) 7 3(26) | 26 4 5 |
| 6 7 2 | 15 45 14 | 9 3 8 |
| 45 3 45 | 8 26 9 | 7 1 26 |
'--------------'------------------------'------------'
Those four (26) combos are the problem. As far as I can see, I could arrange them in two ways and get two different BUG+11s:
BUG+11 (a):
- Code: Select all
.--------------.------------------------.------------.
| 2 1 9 | 4 8 5 | 36 7 36 |
| 8 6 3 | 9 1 7 | 5 2 4 |
| 7 45 45 | 26 3 26 | 8 9 1 |
:--------------+------------------------+------------:
| 15 9 6 | 7 25 13+2 | 4 8 23 |
| 3 45 8 | 12+56 9 46+12 | 12 56 7 |
| 14+5 2 7 | 35+16 46+5 8 | 13 56 9 |
:--------------+------------------------+------------:
| 9 8 1 | 36+2 7 23+6 | 26 4 5 |
| 6 7 2 | 15 45 14 | 9 3 8 |
| 45 3 45 | 8 26 9 | 7 1 26 |
'--------------'------------------------'------------'
BUG+11 (b):
- Code: Select all
.--------------.------------------------.------------.
| 2 1 9 | 4 8 5 | 36 7 36 |
| 8 6 3 | 9 1 7 | 5 2 4 |
| 7 45 45 | 26 3 26 | 8 9 1 |
:--------------+------------------------+------------:
| 15 9 6 | 7 25 13+2 | 4 8 23 |
| 3 45 8 | 16+25 9 24+16 | 12 56 7 |
| 14+5 2 7 | 35+16 46+5 8 | 13 56 9 |
:--------------+------------------------+------------:
| 9 8 1 | 23+6 7 36+2 | 26 4 5 |
| 6 7 2 | 15 45 14 | 9 3 8 |
| 45 3 45 | 8 26 9 | 7 1 26 |
'--------------'------------------------'------------'
That doesn't seem to make sense, but does it? Or have I made a rookie mistake somewhere? That's totally possible as I'm doing this manually, plus I don't often dig into other than obvious and useful BUG possibilities. This one is clearly not very useful, even if does have a BUG (or two), so take it as an academic exercise.