본문 바로가기
카테고리 없음

백준 python : 2941 크로아티아 알파벳

by dev챙 2024. 1. 7.

문제 링크

🗝️ 풀이 및 정답

답안

word = input()

croatia = ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="]


for i in croatia:
    word = word.replace(i,"a")

print(len(word))