Given a number, return a list containing the two halves of the number. If the number is odd, make the rightmost number higher.
number_split(4) ➞ [2, 2] number_split(10) ➞ [5, 5] number_split(11) ➞ [5, 6] number_split(-9) ➞ [-5, -4]