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

hhkim·2023년 6월 21일
0

Algorithm - JavaScript

목록 보기
17/188
post-thumbnail

풀이 과정

배열의 값을 하나하나 확인하면서 합 구하기: reduce()

코드

function solution(absolutes, signs) {
  return absolutes.reduce((result, n, i) => result + (signs[i] ? n : -n), 0);
}

0개의 댓글