ppotatoG


Back to all posts

없는 숫자 더하기

Written by ppotatoG & Posted on January 28th, 2022

없는 숫자 더하기

제출한 답

0부터 10까지 돌며, num의 i번째와 i이 같은 값이 아닐 때,

num, 과 새로 만든 배열 newArr에 값 추가

newArr를 모두 더한 값 반환

function solution(num) {
let newArr = [];
for(let i = 0; i < 10; i++){
if(i !== num.sort()[i]){
num.push(i)
newArr.push(i);
}
}
return newArr.reduce((a, b) => a + b);
}

Posted on January 28th, 2022