Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
filter & lambda solution in Clear category for Non-unique Elements by rrr
def checkio(data):
"""return a list of all non-unique items of an iterable"""
return list(filter(lambda x: data.count(x) > 1, data))
Dec. 24, 2014