add test boilerplate

This commit is contained in:
Rob-Rychs
2018-04-01 01:16:14 -07:00
parent 7f25b4de80
commit 7a296dafa2
4 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,2 @@
def has_duplicates(lst):
return len(lst) != len(set(lst))