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 pgmarchenko
def checkio(data):
return list(filter(lambda n: data.count(n) > 1, data))
Feb. 26, 2015