Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Easy and clear soultion solution in Clear category for Non-unique Elements by piotr.sawicki
def checkio(data):
result = []
for i in data:
if data.count(i) > 1:
result.append(i)
return result
Oct. 18, 2017