Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
collections.Counter solution in Clear category for Non-unique Elements by David_Jones
from collections import Counter
def checkio(data):
c = Counter(data)
return [x for x in data if c[x] > 1]
May 2, 2019
Comments: