나의 개발일지

[프로그래머스] Lv.2 타겟 넘버 [Python, 파이썬] 본문

프로그래머스

[프로그래머스] Lv.2 타겟 넘버 [Python, 파이썬]

YoonJuHan 2023. 3. 9. 15:55
answer = 0

def f(n, t, i, sum):
    global answer
    if i == len(n):
        if sum == t:
            answer += 1
        return

    f(n, t, i+1, sum + n[i])
    f(n, t, i+1, sum - n[i])

def solution(numbers, target):
    f(numbers, target, 0, 0)
    return answer
Comments