개발바닥

BOJ_1919 [ 에너그램 만들기] [ 파이썬 ] 본문

[ Algorithm ]/[ PYTHON ]

BOJ_1919 [ 에너그램 만들기] [ 파이썬 ]

라이언 2020. 5. 12. 12:01
반응형

문제

https://www.acmicpc.net/problem/1919

 

1919번: 애너그램 만들기

두 영어 단어가 철자의 순서를 뒤바꾸어 같아질 수 있을 때, 그러한 두 단어를 서로 애너그램 관계에 있다고 한다. 예를 들면 occurs 라는 영어 단어와 succor 는 서로 애너그램 관계에 있는데, occurs�

www.acmicpc.net

문제 해결 방법

두 문장에 알파벳 일치하는 개수를 제외한 나머지 알파벳 개수를 다 더해서 정답으로 출력하면 된다.

파이썬에 count 함수를 사용해서 알파벳마다 개수를 얻을 수 있다.

 

 

소스 코드 보기

https://github.com/jokerKwu/BOJ_Algorithm/blob/master/python/BOJ_1919.py

 

jokerKwu/BOJ_Algorithm

Contribute to jokerKwu/BOJ_Algorithm development by creating an account on GitHub.

github.com

str_a = input()
str_b = input()
res = 0
for i in range(97,123):
    res += abs(str_a.count(chr(i))-str_b.count(chr(i)))
print(res)

 

반응형
Comments