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 oliwiam96
def checkio(data):
result = list(data)
for item in data:
if data.count(item)<2:
result.remove(item)
return result
Oct. 24, 2015