Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one line solution in Speedy category for Non-unique Elements by kim.yangjin
def checkio(data: list) -> list:
return [i for i in data if data.count(i) != 1]
May 7, 2020