Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
yield solution in Clear category for Non-unique Elements by oduvan
def checkio(data):
for item in data:
if data.count(item) > 1:
yield item
Oct. 1, 2017
Comments: