Contains Duplicates
Last updated
Was this helpful?
Last updated
Was this helpful?
Given an array of integers, find if the array contains any duplicates.
Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.
Just use a set or dictionary to check if the number already exists
Time: O(n)
Space: O(n)