We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d7cbf9 + 1661587 commit 550957bCopy full SHA for 550957b
Counter.py
@@ -0,0 +1,4 @@
1
+from collections import Counter
2
+print(Counter(['B','B','A','B','C','A','B','B','A','C']))
3
+print(Counter({'A':3, 'B':5, 'C':2}))
4
+print(Counter(A=3, B=5, C=2))
0 commit comments