Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First (without list comprehension) solution in Clear category for Non-unique Elements by JeromeJ
def checkio(data):
return list(filter(lambda e: data.count(e) > 1, data))
May 28, 2014
Comments: