What is the logical criterion used to place the four different symbols that fills the 36 cells of the 6 x 6 grid ?
-------------------------
| O | # | x | @ | # | O |
-------------------------
| @ | O | O | x | x | @ |
-------------------------
| @ | x | O | # | # | @ |
-------------------------
| # | @ | @ | x | O | # |
-------------------------
| # | O | O | x | x | # |
-------------------------
| x | @ | # | O | @ | x |
-------------------------
Starting from the top left, following the pattern:
go one down, go diagonally up and right, go one to the right, go
diagonally down and left, go one down, go diagonally up and to the
right, ...
With this pattern the sequence
O@#xO@#xO@#x etc is formed.
<>>