Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
My 1st solution! solution in Uncategorized category for Non-unique Elements by aggelgian
def checkio(data):
bucket = {}
for x in data:
bucket[x] = bucket[x] + 1 if x in bucket else 1
return list(filter(lambda x: bucket[x] > 1, data))
Feb. 5, 2014
Comments: