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 4a5c257 commit 25bd076Copy full SHA for 25bd076
count_group/count_group.py
@@ -1,5 +1,7 @@
1
2
def count_group(string: str) -> list:
3
+ if not string:
4
+ return []
5
counter = 0
6
group = []
7
temp = string[0]
0 commit comments