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 palinomichalec
def checkio(data):
list = []
for element in data:
if data.count(element) > 1:
list.append(element)
return list
Dec. 14, 2015
Comments: