Given `nums` containing `n` distinct numbers from the range `0..n`, implement `missingNumber(nums)` returning the one number missing.
+ 1 hidden test run on Submit.
XOR-ing indices and values cancels present numbers, leaving the missing one. O(n) time, O(1) space.
Run your code to see results.