diff options
Diffstat (limited to 'progs/a345.py')
-rw-r--r-- | progs/a345.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/a345.py b/progs/a345.py new file mode 100644 index 0000000..97c90fc --- /dev/null +++ b/progs/a345.py @@ -0,0 +1,4 @@ +from collections import Counter
+def most_common_elem(s,a):
+ most_common_elem=Counter(s).most_common(a)
+ return most_common_elem
\ No newline at end of file |