Skip to content

Commit 15bfc49

Browse files
Update 283. Move Zeroes.py
1 parent f6ac862 commit 15bfc49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/easy/283. Move Zeroes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Solution:
22
def moveZeroes(self, nums: List[int]) -> None:
33
"""
4-
Do not return anything, modify nums in-place instead.
4+
moveZeroes arranges list nums so that all 0s are at the end.
55
"""
66
for i in nums:
77
if i == 0:

0 commit comments

Comments
 (0)