First solution in Clear category for Non-unique Elements by yawazar
def checkio(data): return [i for i in data if data.count(i) > 1]
Feb. 4, 2016