LeetCode 75: 283. Move Zeroes

김준수·2024년 2월 21일
0

LeetCode 75

목록 보기
10/63
post-custom-banner

283. Move Zeroes

Description

Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements.

Note that you must do this in-place without making a copy of the array.


정수 배열 nums가 주어지면 0이 아닌 요소의 상대적인 순서를 유지하면서 모든 0을 그 끝으로 이동합니다.

배열을 복사하지 않고 주어진 배열 안에서 이 작업을 수행해야 합니다.

Example 1:

Input: nums = [0,1,0,3,12]
Output: [1,3,12,0,0]

Example 2:

Input: nums = [0]
Output: [0]

Constraints:

  • 1 <= nums.length <= 104
  • -231 <= nums[i] <= 231 - 1

Follow up: Could you minimize the total number of operations done?


후속조치 : 전체 움직임의 수를 최소화 할 수 있습니까?

Solution


class Solution {
    public void moveZeroes(int[] nums) {
        int zero = 0;
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] != 0) {
                nums[zero] = nums[i];
                zero++;
            }
        }

        for (int i = zero; i < nums.length; i++) {
            nums[i] = 0;
        }
    }
}
post-custom-banner

0개의 댓글