LEVEL2_프로그래머스_타겟 넘버

Written on September 23, 2019

문제

n개의 음이 아닌 정수가 있습니다. 이 수를 적절히 더하거나 빼서 타겟 넘버를 만들려고 합니다. 예를 들어 [1, 1, 1, 1, 1]로 숫자 3을 만들려면 다음 다섯 방법을 쓸 수 있습니다.

-1+1+1+1+1 = 3
+1-1+1+1+1 = 3
+1+1-1+1+1 = 3
+1+1+1-1+1 = 3
+1+1+1+1-1 = 3

사용할 수 있는 숫자가 담긴 배열 numbers, 타겟 넘버 target이 매개변수로 주어질 때 숫자를 적절히 더하고 빼서 타겟 넘버를 만드는 방법의 수를 return 하도록 solution 함수를 작성해주세요.

풀이

function solution(numbers, target) {
  let count = 0;
  const makeNumber = (index, nums) => {
    if (index === numbers.length) {
      let sum = nums.reduce((a, b) => {
        return a + b;
      }, 0);
      if (sum === target) {
        count++;
      }
      return;
    } else {
      let addNum = [...nums, numbers[index]];
      let substractNum = [...nums, -1 * numbers[index]];
      makeNumber(index + 1, addNum);
      makeNumber(index + 1, substractNum);
    }
  };
  makeNumber(0, []);
  return count;
}


문제바로가기

타겟 넘버

👩🏻‍💻 배우는 것을 즐기는 프론트엔드 개발자 입니다
부족한 블로그에 방문해 주셔서 감사합니다 🙇🏻‍♀️

in the process of becoming the best version of myself