First solution in Clear category for Non-unique Elements by Aunmag
def checkio(x): return [i for i in x if x.count(i) > 1]
April 27, 2016