First solution in Clear category for Non-unique Elements by mirekzvar
def checkio(data): return [x for x in data if data.count(x)>1]
Oct. 30, 2018