반응형
SMALL
itertools.permutations()
더보기
Explanation
All possible size 2 permutations of the string "HACK" are printed in lexicographic sorted order.
주어진 문자열을 받아서
문자 2가지 씩 뽑는 경우
(오름차순으로 정렬)
# # Enter your code here. Read input from STDIN. Print output to STDOUT
from itertools import permutations
s, n = input().split()
for i in permutations(sorted(s), int(n)):
print(''.join(i))
from itertools import permutations
s, n = input().split()
print("\n".join(list(map(''.join, permutations(sorted(s), int(n))))))
반응형
LIST
'IT & 영상관련 > 파이썬python' 카테고리의 다른 글
HackerRank] Symmetric Difference (저장용) (0) | 2020.08.07 |
---|---|
HackerRank] .combinations() 조합 (저장용) (2) | 2020.08.06 |
HackerRank] itertools.product() 리스트 간 곱하기 (저장용) (0) | 2020.08.04 |
HackerRank] Capitalize (첫글자 대문자) (저장용) (0) | 2020.08.03 |
python]hackerRank] Alphabet Rangoli (다시보기) (저장용) (0) | 2020.08.02 |