Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1st home task solution in Clear category for Non-unique Elements by Fokzterrier
#Your optional code here
#You can import some modules or create additional functions
def checkio(data):
result = []
for el in data:
if data.count(el) >1:
result.append(el)
return result
Oct. 21, 2016