-Code
from collections import Counter # 갯수를 쉽게 세어 딕셔너리 작성
a = input()
b = input()
count = Counter(a) | Counter(b) # 최대 합집합
res = ""
for key, val in count.items():
res += key * val
print(res)
Counter와 합집합을 찾게되어 그것으로 해결했습니다
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32888번 Consolidating Windows (0) | 2024.12.17 |
---|---|
[백준/파이썬] 10187번 Golden (0) | 2024.12.16 |
[백준/파이썬] 9297번 Reducing Improper Fractions (1) | 2024.12.14 |
[백준/파이썬] 6812번 Good times (0) | 2024.12.13 |
[백준/파이썬] 32682번 Which Number Kind Is It? (1) | 2024.12.12 |