30:00
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.
1≤nums.length≤1051 \leq \text{nums.length} \leq 10^51≤nums.length≤105
−109≤nums[i]≤109-10^9 \leq \text{nums}[i] \leq 10^9−109≤nums[i]≤109
Empty