This problem asks you to develop an algorithm for winning the
two-player game Nim, in which players take turns removing objects from
a single pile, one or two objects at a time.
The last player to take any objects is the winner. Nim is not a fair game.
Given the right conditions, there is a strategy such that the player who
starts can never lose. The number of objects, denoted by numObjects, in
the pile varies from game to game, but you can assume that both players
know the initial value of numObjects.
Write the method, makeMove, that returns the number of objects
to remove from the heap (either one or two) given the current number of
objects in the heap such that you will be in a winning position. If you
are in a losing position, then return 0.
numObjects is a positive number less than 1000
(i.e., 0 < numObjects < 1000).
1
Returns: 1
Your move is to take the last object, thus winning the game.
2
Returns: 2
Your move is to take the last two objects, thus winning the game.
4
Returns: 1
Your move is to take only 1 object leaving your opponent with the guaranteed losing position of 3 objects in the heap.
6
Returns: 0
You are in a guaranteed losing position, so it does not matter what your move is. Note this by returning 0, an invalid move in the game.
