Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Another way solution in Creative category for Non-unique Elements by Merzix
def checkio(data):
data_source = data.copy()
unique = set(data)
for x in unique:
data.remove(x)
double = set(data)
return [x for x in data_source if x in double]
May 30, 2017
Comments: