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 7nat7
def checkio(data):
return(list(filter((lambda x: data.count(x) > 1),data)))
#for self-testing
May 12, 2014
Comments: