Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1 Counter solution in Speedy category for Non-unique Elements by DiZ
def checkio(data):
c = __import__("collections").Counter(data)
return [n for n in data if c[n] > 1]
July 31, 2014
Comments: