Intro
Solution
nC6 조합을 구하여 모두 출력하는 문제. 파이썬 내장 itertools 라이브러리의 combinations 메소드를 사용하여 조합을 만들고 모두 출력하여 간단하게 풀이할 수 있다.
Code
from itertools import combinations as cb
def solve():
while True:
k, *S = input().split()
if k == '0': break
[print(" ".join(s)) for s in cb(S, 6)]
print()
solve()
'Koala - 7기 > 코딩테스트 준비 스터디' 카테고리의 다른 글
[백준/Python] 1107번 리모컨 (0) | 2022.07.09 |
---|---|
[백준/Python] 1969번 DNA (0) | 2022.07.08 |
[백준/Python] 1895번 필터 (0) | 2022.07.07 |
[백준/C++] 6603번 로또 (0) | 2022.07.06 |
[백준/C++] 9095번 1, 2, 3 더하기 (0) | 2022.07.06 |