Algorithm/Python

[조합]

🥭맹2 2021. 3. 4. 21:32
# 3C2

def comb(cnt, start):
    global N, M
    if cnt == N:
        print(answer)
    return

    for i in range(start, M):
        answer.append(i)
        comb(cnt + 1, i+1)
        answer.pop()

M = 3
N = 2
answer = []

comb(0, 0)

 

'Algorithm > Python' 카테고리의 다른 글

[백준 16235] 나무 재테크  (0) 2021.03.16
[백준 2847] 게임을 만든 동준이  (2) 2021.03.05
[알고리즘] 순열  (0) 2021.02.07
[백준 16236] 아기 상어  (2) 2021.02.03
[백준 20055] 컨베이어 벨트 위의 로봇  (0) 2021.02.02