Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple one-liner solution in Clear category for Non-unique Elements by Goodester
def checkio(data: list) -> list:
return [el for el in data if data.count(el) > 1]
Dec. 14, 2019
Comments: