[프로그래머스] Lv.1 음양 더하기

Miro·2022년 8월 1일
0
post-thumbnail

프로그래머스 Lv.1 음양 더하기

문제, 제한 사항

입출력

나의 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
function solution(absolutes, signs) {
    let answer = 0;
    
    for(let i = 0; i < absolutes.length; i++) {
        if(signs[i] === true) {
            answer += absolutes[i];
        } else if(signs[i] === false){
            answer -= absolutes[i];
        }
    }
    
    return answer;
}
cs

반복문을 i가 0부터 배열 absolutes의 길이까지 반복한다.

만약 signs[i]가 true이면, answeraabsolutes[i]를 더해준다.

만약 signs[i]가 false이면, answeraabsolutes[i]를 빼준다.

profile
프론트엔드 개발자(진)

0개의 댓글