First solution in Clear category for Non-unique Elements by virzen
def checkio(data): return [elem for elem in data if data.count(elem) != 1]
Oct. 16, 2016