Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Straight forward solution in Clear category for Non-unique Elements by Butch
def checkio(data):
result = []
for elem in data:
if data.count(elem) > 1:
result.append(elem)
return result
June 20, 2015
Comments: