프로그래머스 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이면,answer
에aabsolutes[i]
를 더해준다.만약
signs[i]
가 false이면,answer
에aabsolutes[i]
를 빼준다.