ystalyze / sdqesa1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sdqesa1

def check_duplicate(lst): return len(lst) != len(set(lst)) check_duplicate([1,2,3,4,5,4,6]) # True check_duplicate([1,2,3]) # False check_duplicate([1,2,3,4,9]) # False

About