Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Non-unique Elements by tokiojapan55
def checkio(data: list) -> list:
return [v for v in data if v not in [d for d in data if data.count(d) <= 1]]
June 22, 2020
Comments: