Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One line solution in Clear category for Non-unique Elements by pavel.fasther
def checkio(data: list) -> list:
return [x for x in data if not data.count(x) < 2]
Nov. 18, 2019