음양더하기(프로그래머스)

김도영·2022년 8월 26일
0

매개변수로 받은 두 배열을 반복문으로 쭉 순회하면서,

true면 그대로, false면 (-1)을 곱해줬다.

그리고 다 더했음.

function solution(absolutes, signs) {

let newarray=[];

for(let i=0; i<absolutes.length; i++){
    if(signs[i]==true){
        newarray[i]=absolutes[i];
    }
    if(signs[i]==false){
        newarray[i]=(absolutes[i])*(-1);
    }
}

let result =0;

for(let i=0; i<newarray.length; i++){
    result += newarray[i];
}

return result;
}
profile
김도영

0개의 댓글