Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Without count solution in Clear category for Non-unique Elements by sumeet.lintel
def checkio(data):
non_unique = []
for i, d in enumerate(data):
if d in data[:i] or d in data[i+1:]:
non_unique.append(d)
return non_unique
March 23, 2015
Comments: