Algorithm - CodeKata #14

Sangho Moon·2020년 9월 29일
0

Algorithm

목록 보기
11/37
post-thumbnail

1. Question

주어진 숫자 배열에서, 0을 배열의 마지막쪽으로 이동시켜주세요.
원래 있던 숫자의 순서는 바꾸지 말아주세요.

  • 새로운 배열을 생성해서는 안 됩니다.

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


2. Answer

const moveZeroes = nums => {
  let end = nums.length - 1;
  for (let i = end; i > -1; i--){
    if (nums[i] === 0) {
     nums.push(nums[i]);
     nums.splice(i, 1);
    }
  }
  return nums
}

console.log(moveZeroes([0, 1, 0, 3, 12]));
profile
Front-end developer

0개의 댓글