First solution in Clear category for Non-unique Elements by lexin13
def checkio(data): return [x for x in data if data.count(x) > 1]
March 12, 2016