Second solution in Clear category for Non-unique Elements by Dracunos
def checkio(data): return [i for i in data if data.count(i) > 1]
Dec. 30, 2015