Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Non-unique Elements by rgumkfelle
def checkio(data):
result = []
for el in data:
if data.count(el) > 1:
result.append(el)
data = result
return data
Dec. 22, 2015