First solution in Clear category for Non-unique Elements by panaro32
def checkio(l): return [x for x in l if l.count(x) > 1]
April 29, 2014
Comments: