8

You are given a 3x3 grid with 3 crosses as shown below. Each turn, you can select a cross and slide it along horizontally or vertically. It will continue sliding until it hits another cross or a wall. Can you get a cross into the centre square?

enter image description here

Dmitry Kamenetsky
  • 35,897
  • 5
  • 66
  • 276

3 Answers3

8

Yes.

Consider

|X|X|=|
|X|=|=|
|=|=|=|

|X|=|X|
|X|=|=|
|=|=|=|

|X|=|=|
|X|=|=|
|=|=|X|

|=|=|X|
|X|=|=|
|=|=|X|

|=|=|=|
|X|=|X|
|=|=|X|

|=|=|=|
|=|X|X|
|=|=|X|

Daniel S
  • 6,748
  • 20
  • 40
  • Correct and well done! You can now try the harder version of this puzzle: https://puzzling.stackexchange.com/questions/122806/sliding-crosses-in-a-4x4-grid – Dmitry Kamenetsky Oct 19 '23 at 12:46
3

Is it possible?

Yes

The follow 6-move sequence is the shortest I can find. No proof that it is optimal.
enter image description here

fljx
  • 15,848
  • 2
  • 54
  • 91
0

Yes, possible in 5 moves

A2-A1, A1-C1, A3-A1,A1-B1,B3-B2