asmani said:
Oh, did you mean the answer to "?" is all black? Well, that doesn't need a picture.
Yes, and I was confused why you asked for a picture. I mean, sure, I could make one, but I didn't see the point.
I don't think I found "the" answer, and I don't even think there is "the" answer. There are many answers.
What I found: For every position, count the number of white dots at this position and at the surrounding positions in the first two rows. If the number is 5 or larger, make a white dot in the third row.
As an example, consider the top spot in the first column: We have the top, top left and center dot in the first row and the top dot in the second row, for a total of 4 white dots. Smaller than 5, so this spot is black.
This algorithm leads to "all black" in the bottom right.
The two columns we have only constrain what the dot color has to be for 2 to 6 and 8, but we don't have 1 anywhere. A slight modification from the rule above: If the number is 1, or 5 or larger, make the dot white. That leads to three white dots.