Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
list comprehension solution in Clear category for Non-unique Elements by kamjir
def checkio(data: list) -> list:
return [x for x in data if data.count(x)>1]
Oct. 15, 2020