Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Non-unique Elements solution in Clear category for Non-unique Elements by vvm70
def checkio(data: list) -> list:
return filter(lambda x: data.count(x) > 1, data)
April 25, 2020