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 t4d3uszk
def checkio(data: list) -> list:
return [elem for elem in data if data.count(elem) > 1]
July 19, 2019
Comments: