728x90
<문제 링크>
https://leetcode.com/problems/move-zeroes/
<문제 풀이>
- 파이썬 배열의 내장 메소드를 사용
<코드>
class Solution:
def moveZeroes(self, nums: List[int]) -> None:
"""
Do not return anything, modify nums in-place instead.
"""
for i in range(nums.count(0)):
nums.remove(0)
nums.append(0)
'두두의 알고리즘 > 문제' 카테고리의 다른 글
[기타] 릿코드 Easy 344 'Reverse String' (Python) (0) | 2022.01.13 |
---|---|
[정렬] 릿코드 Easy 167 'Two Sum II - Input Array Is Sorted' (Python) (0) | 2022.01.13 |
[정렬] 릿코드 Medium 189 'Rotate Array' (Python) (0) | 2022.01.12 |
[정렬] 릿코드 Easy 977 'Squares of a Sorted Array' (Python) (0) | 2022.01.12 |
[이분탐색] 릿코드 Easy 35 'Search Insert Position' (Python) (0) | 2022.01.11 |