Given an array nums containing n distinct numbers drawn from the range [0, n], exactly one number in that range is missing. Return the missing number.
nums
n
[0, n]
[3,0,1]
[0,1]
[9,6,4,2,3,5,7,0,1]
[0]
[1]
[0,2,3,4,5]