[LeetCode]Sort Array By Parity

오트밀·2022년 1월 24일
0
class Solution {
    public int[] sortArrayByParity(int[] nums) {
        int index = 0;
        int temp = 0;
        for(int i = 0; i < nums.length; i++){
            if(nums[i]%2 == 0){
                temp = nums[i];
                nums[i] = nums[index];
                nums[index] = temp;
                index++;
            }
        }
        return nums;
    }
}

Given an integer array nums, move all the even integers at the beginning of the array followed by all the odd integers.

Return any array that satisfies this condition.

integer배열 nums가 있다. 모든 짝수 배열을 앞으로 나열하고 그 뒤에 홀수 배열을 나열하라.return은 수정된 배열.

Move Zeroes 코드에서

nums[i] =nums[index];

추가

profile
루틴을 만들자

0개의 댓글