First solution in Clear category for Non-unique Elements by solka
def checkio(data): return [x for x in data if data.count(x) > 1]
April 22, 2015
Comments: