Skip to content

Commit 2135ff4

Browse files
authored
Update Solution2.py
1 parent 7f4e4fa commit 2135ff4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solution/075.Sort Colors/Solution2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ def sortColors(self, nums):
1111
while i < len(nums):
1212
for j in range(Count[color]):
1313
nums[i] = color
14-
i+=1
15-
color+=1
14+
i += 1
15+
color += 1

0 commit comments

Comments
 (0)