Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Non-uniqueElements.c solution in Clear category for Non-unique Elements by trudnopodobny
def checkio(data: list) -> list:
list = []
for a in data:
if data.count(a) > 1:
list.append(a)
return list
Oct. 5, 2018
Comments: