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