summaryrefslogtreecommitdiff
path: root/progs/a345.py
blob: 97c90fcf0167b9213b518c766591a5454f0703cf (plain)
1
2
3
4
from collections import Counter 
def most_common_elem(s,a):
  most_common_elem=Counter(s).most_common(a)
  return most_common_elem