This robot roams around a 2D grid. It starts at (0, 0) facing North. After each time it moves, the robot rotates 90 degrees clockwise. Given the amount the robot has moved each time, you have to calculate the robot's final position.
To illustrate, if the robot is given the movements 20, 30, 10, 40 then it will move:
(0, 20)(30, 20)(30, 10)(-10, 10)...and will end up at coordinates (-10, 10).
track_robot(20, 30, 10, 40) ➞ [-10, 10]
track_robot() ➞ [0, 0]
# No movement means the robot stays at (0, 0).
track_robot(-10, 20, 10) ➞ [20, -20]
# The amount to move can be negative.
Each movement is an integer (whole number).