Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
for and if solution in Clear category for Non-unique Elements by r.nov.07.b.b
def checkio(data: list) -> list:
return [i for i in data if data.count(i) != 1]
Aug. 3, 2018
Comments: