Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Docker
- 편스토랑
- PYTHON
- 프로그래머스 파이썬
- Git
- ChatGPT
- 백준
- github
- 금융문자분석경진대회
- gs25
- SW Expert Academy
- 캐치카페
- AI 경진대회
- dacon
- leetcode
- ubuntu
- hackerrank
- Baekjoon
- 파이썬
- programmers
- 데이콘
- 맥북
- 코로나19
- 편스토랑 우승상품
- 프로그래머스
- 우분투
- 자연어처리
- Real or Not? NLP with Disaster Tweets
- Kaggle
- 더현대서울 맛집
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 2941번 : 크로아티아 알파벳 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 크로아티아 알파벳 입니다.
Solution
def replace_croatia_alphabet_to_x(input_str):
croatia_alphabet = ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="]
for croatia_alpha in croatia_alphabet:
input_str = input_str.replace(croatia_alpha, "x")
return input_str
if __name__ == "__main__":
input_str = input()
print(len(replace_croatia_alphabet_to_x(input_str)))
Solution 풀이
크로아티아 알파벳의 개수를 세는 방법은 2글자로 된 ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="] 글자들을 제외한
글자들은 그냥 1개로 세면됩니다.
따라서 ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="] 들을 다 1글자로 바꾸고 전체의 길이를 구하면
그것이 바로 크로아티아 알파벳의 개수 입니다.
저는 ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="]를 겹치지않는 x로 치환한 다음 길이를 구했습니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 9086번 : 문자열 (Python) (0) | 2021.06.19 |
---|---|
[BaekJoon] 1076번 : 저항 (Python) (0) | 2021.06.18 |
[BaekJoon] 3059번 : 등장하지 않는 문자의 합 (Python) (0) | 2021.06.16 |
[BaekJoon] 17269번 : 이름궁합 테스트 (Python) (0) | 2021.06.15 |
[BaekJoon] 11586번 : 지영 공주님의 마법 거울 (Python) (2) | 2021.06.14 |
Comments