Classes
Solution()
Solution
Create a set to store unique numbers
Python set() has O(1) lookup
set()
If the number is already in the set, return True
time complexity: O(n)
space complexity: O(n)
Solution.containsDuplicate()