Munching squares

From Rosetta Code
Revision as of 08:51, 28 November 2011 by rosettacode>Spekkio
Task
Munching squares
You are encouraged to solve this task according to the task description, using any language you may know.

Mathematica

<lang Mathematica> ListDensityPlot[

Table[Table[
  FromDigits[BitXor[IntegerDigits[x, 2, 8], IntegerDigits[y, 2, 8]], 
   2], {x, 0, 255}], {y, 0, 255}]]

</lang> output:


<lang Mathematica> ArrayPlot[Array[BitXor, {511, 511}]] </lang> output: