Leetcode #268 Missing Number
Sometimes it is good to use some easy questions to boost confidence.
The question basically is asking for missing number from a 0-based counting system.
I initialize an array with n+1 size, mark all values with '0'.
Iterate the new array against num...
michelletanpy.hashnode.dev1 min read