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 c385
def checkio(data):
copy_list = data[:]
for i in data:
if data.count(i) == 1:
copy_list.remove(i)
return copy_list
April 9, 2015
Comments: