217. Contains Duplicate
Easy
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.
😇 Solution
class Solution:
def containsDuplicate(self, nums: List[int]) -> bool:
return not (len(set(nums)) == len(nums)) #set() - O(n)
Last updated
Was this helpful?