I am trying to figure out if there is a solution to the below matrix. Source Matrix:
| 1 2 |
| 3 4 |
| 5 6 |
| 7 X |
'X' is a vacant position, and you can move you numbers around 'X'.
Can you arrange the numbers in such a way that it becomes a continuous sequence:
| 1 2 |
| 4 3 |
| 5 6 |
| X 7 |
If yes, then how??