Skip to content

Commit 35e6e4e

Browse files
authored
Update largest-3-same-digit-number-in-string.py
1 parent 4c76b47 commit 35e6e4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/largest-3-same-digit-number-in-string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def largestGoodInteger(self, num):
88
:type num: str
99
:rtype: str
1010
"""
11-
result = ""
11+
result = ''
1212
cnt = 0
1313
for i, x in enumerate(num):
1414
cnt += 1

0 commit comments

Comments
 (0)