Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
No counters solution in Clear category for Non-unique Elements by ale1ster
def checkio(data):
data_freqdict = {i:data.count(i) for i in data}
return [el for el in data if data_freqdict[el] > 1]
May 12, 2014
Comments: