Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Third solution in Creative category for Non-unique Elements by KevinFlint
def checkio(data):
nonuniq = [x for x in data if data.count(x)>1]
return nonuniq
Dec. 18, 2014
Comments: