백준 15651번 : N과 M (3)

상은·2022년 4월 16일
0

백준문제

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

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

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

0개의 댓글

관련 채용 정보