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