You have a single row of $2n +1$ checker squares: $n$ red checkers, an empty square, and $n$ black checkers. A 'move' can be:
- A checker next to the empty square sliding into the empty square, or
- A checker that is $2$ squares away from the empty square jumping over an opposite colored checker into the empty square.
What is the least number of moves $M$ needed to reverse the colors? i.e. Start with $n$ red, empty, $n$ black. End with $n$ black, empty, $n$ red,
Example. $n=1$, starting with Red Empty Black: (1) Red Black Empty (2) Empty Black Red (3) Black Empty Red. Took M=3 moves.