Easy
Given an array nums containing n distinct numbers in the range [0, n], return the only number in the range that is missing.
nums
n
[0, n]
Input: nums = [3,0,1] Output: 2
Input: nums = [0,1] Output: 2