def
has_duplicates(lst):
return
len
(lst)
=
(
set
(lst))
x
[
1
,
2
3
4
5
6
]
y
has_duplicates(x)
# False
has_duplicates(y)
# True