Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Non-unique Elements solution in Clear category for Non-unique Elements by Damian_Horna
def checkio(data):
list=[]
for x in data:
if data.count(x)>1:
list.append(x)
return list
Oct. 15, 2016