def recursion():
if M == len(picked):
print (*picked)
return
for i in inputValue:
if i not in picked:
picked.append(i)
recursion()
picked.pop()
if __name__ == "__main__":
N, M = list(map(int, input().split()))
numbers = list(map(int, input().split()))
picked = []
inputValue = [i for i in numbers]
inputValue.sort()
recursion()
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 15656번 N과 M (7) (파이썬) (0) | 2022.06.30 |
---|---|
[백준] 15655번 N과 M (6) (파이썬) (0) | 2022.06.30 |
[백준] 15652번 N과 M (4) (파이썬) (0) | 2022.06.29 |
[백준] 15651번 N과 M (3) (파이썬) (0) | 2022.06.29 |
[백준] 15650번 N과 M (2) (파이썬) (0) | 2022.06.29 |