First solution in Clear category for Non-unique Elements by rolandp
def checkio(data): return [ d for d in data if data.count( d ) > 1 ]
Sept. 26, 2015