A "group" may be a box, a row or a column.
It's impossible to have more than 3 empty rows.
same thing for columns.
Then, to get 10 empty groups, one need at least 4 empty boxes.
More than 4 empty boxes is not possible for valid* pattern; see
hereFinally,10 empty groups would require 4 empty boxes, 3 empty rows, 3 empty columns.
From
here the only pattern that could be valid is this one or an equivalent:
- Code: Select all
+---+---+---+
|...|...|...|
|...|...|.xx|
|...|...|.xx|
+---+---+---+
|...|...|...|
|.xx|.xx|...|
|.xx|.xx|...|
+---+---+---+
|...|...|...|
|.xx|.xx|...|
|.xx|.xx|...|
+---+---+---+
I leave it to
Serg to remind us why that pattern is not valid!
*valid pattern : pattern containing at least a valid puzzleJPF