백준 15652번 : N과 M (4)

상은·2022년 4월 16일
0

백준문제

목록 보기
11/12
n,m = map(int,input().split())
sol = []

def recur(cur):
    if len(sol) == m :
        print(' '.join(map(str,sol)))
        return

    for i in range(cur,n+1):
        sol.append(i)
        recur(i)
        sol.pop()
recur(1)
profile
Be the Best

0개의 댓글

관련 채용 정보