본문 바로가기

두두의 알고리즘/문제

[정렬] 릿코드 Easy 283 'Move Zeroes' (Python)

728x90

<문제 링크>

https://leetcode.com/problems/move-zeroes/

 

Move Zeroes - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com


<문제 풀이>

  1. 파이썬 배열의 내장 메소드를 사용

<코드>

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)