Problem Description
Given an integer array nums
, return true
if any value appears at least twice in the array, and return false
if every element is distinct.
Key Insights
- The problem requires checking for duplicate values in an array.
- A hash table (or set) can efficiently track seen numbers.
- The problem can be solved in a single pass through the array.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To determine if there are any duplicates in the array, we can utilize a set to keep track of the numbers we have seen as we iterate through the array. For each number, we check if it is already in the set:
- If it is, we return
true
since we found a duplicate. - If it isn't, we add it to the set and continue.
If we finish iterating through the array without finding any duplicates, we return
false
.