Building on the toy games introduced
here.
I figured the easiest tile-game move to analyze is transpositions. Only two tiles are affected by any move, and they have to be opposite colors in any minimal solution. My earlier code showed, for example, that it takes 8 tile swaps (orthogonal moves only) to convert:
1101
0110
0100
1010
to
1111
(
Read more... )