Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Non-unique Elements by Testimony
from collections.abc import Iterable
def checkio(data: list[int]) -> Iterable[int]:
return (a for a in data if data.count(a) > 1)
Oct. 27, 2025
Comments: