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.
1 parent 6a3fec7 commit 1661587Copy full SHA for 1661587
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