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 arek.kowalski107
def checkio(data):
newlst=[]
for i in data:
if data.count(i)>1:
newlst.append(i)
return newlst
Dec. 10, 2016