Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using list comprehension solution in Clear category for Non-unique Elements by patryk-tech
def checkio(data: list) -> list:
return [e for e in data if data.count(e) > 1]
April 2, 2019