Detect duplication in list (Python)
Problem
あるリストの中から、重複する要素を検出する。
Detect duplication in list.
Обнаружить дублирование в списке.
Detectar duplicación en la lista.
检测列表中的重复。
Solution
s = ['a', 'a', 'b', 'c', 'c']
from collections import Counter
c = Counter(s)
[x for x in c.items() if x[1] > 1]
# => [('a', 2), ('c', 2)]