Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
4x4 Square Elimination Puzzle
#4
The first time I encountered this one I just did it, tried to repeat and went brain dead.
   

Maybe someone can figure out the first few key moves?

replace BoardSetup call with call for this, boardsetup2
Code: (Select All)
Sub boardsetup2
    ReDim Board(3, 3)
    Board(0, 0) = -1: Board(1, 0) = -1: Board(2, 0) = -1: Board(3, 0) = -1
    Board(0, 1) = -1: Board(1, 1) = -1: Board(2, 1) = -1: Board(3, 1) = 1
    Board(0, 2) = 1: Board(1, 2) = 1: Board(2, 2) = 1: Board(3, 2) = 1
    Board(0, 3) = 1: Board(1, 3) = 1: Board(2, 3) = 1: Board(3, 3) = -1
End Sub
to practice.
  724  855  599  923  575  468  400  206  147  564  878  823  652  556 bxor cross forever
Reply


Messages In This Thread
4x4 Square Elimination Puzzle - by bplus - 03-04-2026, 07:31 PM
RE: 4x4 Square Elimination Puzzle - by bplus - 03-04-2026, 09:17 PM
RE: 4x4 Square Elimination Puzzle - by bplus - 03-04-2026, 10:31 PM
RE: 4x4 Square Elimination Puzzle - by bplus - 3 hours ago

Forum Jump:


Users browsing this thread: 1 Guest(s)