Return `true` if any value appears at least twice in `nums`. Variant **#20**.
Example 1
Input: nums = [2,0,1,2]
Output: true
Constraints
Acceptance: 65% · Topics: hash-table, array
← All practice problems