Skip to content

Commit 7f480f4

Browse files
committed
sort color problem is added
1 parent 324cd74 commit 7f480f4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

python/0075-sort-colors.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class Solution:
2+
def sortColors(self, nums: List[int]) -> None:
3+
"""
4+
Do not return anything, modify nums in-place instead.
5+
"""
6+
lo = 0
7+
mid = 0
8+
high = len(nums)-1
9+
while mid<= high:
10+
if nums[mid] == 0:
11+
nums[lo], nums[mid] = nums[mid], nums[lo]
12+
lo+=1
13+
mid+=1
14+
elif nums[mid] == 1:
15+
mid+=1
16+
else:
17+
nums[mid], nums[high] = nums[high], nums[mid]
18+
high-=1
19+
return nums
20+

0 commit comments

Comments
 (0)