Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Non-unique Elements by msmyxz
def checkio(data):
''' return an array of the non-unique elements'''
return [item for item in data if data.count(item)>1]
July 25, 2016