Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Itertools Counter solution in Clear category for Non-unique Elements by swagg010164
from collections import Counter
def checkio(data: list) -> list:
return [k for k in data if Counter(data)[k] > 1]
Nov. 8, 2019
Comments: