217. Contains Duplicate
Given an array of integers, find if the array contains any duplicates.
Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.
Example 1:
Example 2:
Example 3:
解题要点:
如果元素在set里,返回True。
Last updated
Was this helpful?