First solution in Clear category for Non-unique Elements by maxadamski
def checkio(data): return [e for e in data if data.count(e) > 1]
Oct. 19, 2017