01 · Question
Given an integer array nums, return true if any value appears at least twice, and false if every element is distinct.
Example:
- Input:
nums = [1,2,3,1] - Output:
true
01 · Question
Given an integer array nums, return true if any value appears at least twice, and false if every element is distinct.
Example:
nums = [1,2,3,1]true