Skip to content

Commit 7ae4900

Browse files
committed
Update solution 075 [Python3]
1 parent 3c09fdc commit 7ae4900

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

solution/075.Sort Colors/Solution.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class Solution:
2+
def sortColors(self, nums):
3+
"""
4+
:type nums: List[int]
5+
:rtype: void Do not return anything, modify nums in-place instead.
6+
"""

0 commit comments

Comments
 (0)