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