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 splinter12345
#Your optional code here
#You can import some modules or create additional functions
def checkio(data):
ret =[]
for num in data:
if data.count(num)>1: ret.append(num)
return ret
Oct. 9, 2014
Comments: