Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Non-unique Elements by Teja_002
def checkio(lst):
new_list = []
for item in lst:
if(lst.count(item) != 1):
new_list.append(item)
return new_list
Feb. 23, 2021
Comments: