728x90
반응형
두 단어의 알파벳 개수들의 차이의 합을 구하면 된다.
s1 = input()
s2 = input()
ans = 0
a, b = [0]*26, [0]*26
for i in range(len(s1)):
a[ord(s1[i])-97] += 1
for i in range(len(s2)):
b[ord(s2[i])-97] += 1
for i in range(26):
ans += abs(a[i]-b[i])
print(ans)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1929번 소수 구하기(python) (0) | 2020.01.29 |
---|---|
백준 알고리즘 1924번 2007년(python) (0) | 2020.01.28 |
백준 알고리즘 1913번 달팽이(python) (0) | 2020.01.28 |
백준 알고리즘 1912번 연속합(python) (0) | 2020.01.28 |
백준 알고리즘 1904번 01타일(python) (0) | 2020.01.28 |