본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32560번 Amalgram

by 현장 2024. 12. 15.

-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와 합집합을 찾게되어 그것으로 해결했습니다