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 dominieq
def checkio(data):
result_array = []
for i in data:
if data.count(i)>1:
result_array.append(i)
return result_array
Oct. 19, 2016