[Python] BOJ 15663번. N과 M (9) 작성일 2020-06-08 | In Algorithm | 15663번. N과 M (9) 문제 링크 https://www.acmicpc.net/problem/15663 풀이 코드 12345678910111213# 15663번. N과 M (9) from itertools import permutations n, m = map(int, input().split()) nList = list(map(int, input().split())) # nList.sort() cList = list(set(permutations(nList, m))) cList.sort() for c in cList: for i in c: print(i, end=' ') print() 비고