Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
n-u elements solution in Clear category for Non-unique Elements by Nirmala
#Your optional code here
#You can import some modules or create additional functions
def checkio(data):
c = []
newdata = list(data)
for n in newdata:
if newdata.count(n) > 1:
c.append(n)
return c
Nov. 9, 2016