https://programmers.co.kr/learn/courses/30/lessons/76501
출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges
[숫자들], [Boolean들] 을 받았을 때 Boolean 배열이 true 이면 더하고 false이면 빼는 제목 그대로 음양 더하기이다.
reduce를 사용할까 했는데 그냥 for문을 돌렸다.
function solution(absolutes, signs) {
let answer = 0;
for (const index in signs) {
if (!signs[index]) {
absolutes[index] = absolutes[index] * -1;
}
answer += absolutes[index]
}
return answer;
}
역시나 가장 높은 추천수를 받은 답안은 reduce를 썼다.
function solution(absolutes, signs) {
return absolutes.reduce((acc, val, i) => acc + (val * (signs[i] ? 1 : -1)), 0);
}
'프로그래머스 > 메모' 카테고리의 다른 글
[Javascript][메모] 프로그래머스 이진변환 반복하기 (0) | 2021.06.08 |
---|---|
[Javascript][메모] 프로그래머스 3진법 (0) | 2021.06.08 |
[Javascript][메모] 프로그래머스 피보나치 수, 2 x n 타일링 (0) | 2021.04.22 |