Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
filter+lambda solution in Clear category for Non-unique Elements by m.kurapov
def checkio(data: list) -> list:
return list(filter(lambda x:data.count(x)>1,data))
March 19, 2020