8 lines
222 B
Python
8 lines
222 B
Python
|
class Solution:
|
||
|
def containsDuplicate(self, nums: List[int]) -> bool:
|
||
|
exists = {}
|
||
|
for n in nums:
|
||
|
if n in exists:
|
||
|
return True
|
||
|
exists[n] = True
|
||
|
return False
|