Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1 line solution in Clear category for Non-unique Elements by thealfest1
def checkio(data: list) -> list:
return (f for f in data if data.count(f) > 1)
March 18, 2019