This repository has been archived on 2022-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
b-content/other/count-tests.py

24 lines
562 B
Python

##################################### Первый способ:
A = [10, 10, 23, 10, 123, 66, 78, 123]
counter = {}
for elem in A:
counter[elem] = counter.get(elem, 0) + 1
doubles = {element: count for element, count in counter.items() if count > 1}
print(doubles)
##################################### Второй способ:
from collections import Counter
counter = Counter(A)
##################################### Третий способ:
from collections import defaultdict
counter = defaultdict(int)
for elem in A:
counter[elem] += 1