Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Non-unique Elements by KateQuark
def checkio(data):
s = []
for k in data:
if data.count(k) == 1: s.append(k)
for i in s:
data.remove(i)
return data
Aug. 14, 2015
Comments: