Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One Line solution in Creative category for Non-unique Elements by cczerone
def checkio(data: list) -> list:
return [one for one in data if data.count(one)>1]
June 2, 2020