코딩공부/프로그래머스

※[프로그래머스]Lv.2 타겟 넘버C#

usingsystem 2023. 8. 1. 10:18
728x90

https://school.programmers.co.kr/learn/courses/30/lessons/43165?language=csharp 

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

소스코드

using System;
using System.Collections.Generic;
using System.Linq;
public class Solution
{
    List<int> results = new List<int>();
    public int solution(int[] numbers, int target)
    {
        DFS(numbers, target, 0, 0);
        return results.Count();
    }

    void DFS(int[] arr, int target, int idx, int sum)
    {
        if (idx == arr.Length)
        {
            if (target == sum)
            {
                results.Add(1);
            }
        }
        else
        {
            DFS(arr, target, idx + 1, sum + arr[idx]);
            DFS(arr, target, idx + 1, sum - arr[idx]);
        }
    }
}
728x90