Write a function to swap a number in place (that is, without temporary variables).

Example:

Input: numbers = [1,2]
Output: [2,1]

Note: