일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- data_structure
- shapeArea
- 수 정렬하기
- Numpy
- recursion
- 2750
- almostIncreasingSequence
- 백준
- flask
- 파이썬 포렌식
- Sequential Search
- adjacentElementsProduct
- Python
- 피보나치 수
- Counting cells in a blob
- codesignal
- cpp
- til
- codesingal
- C++
- 10953
- markdown
- All Longest Strings
- matrixElementsSum
- collections.deque
- centuryFromYear
- 파이썬머신러닝완벽가이드
- Daily Commit
- 2015 봄학기 알고리즘
- baekjun
Archives
- Today
- Total
Introfor
[백준] 2941번 크로아티아 알파벳 본문
1일 1코딩
1 2 3 4 5 6 7 8 9 10 | def solution(): croatia_alpha = ['c=', 'c-', 'dz=', 'd-', 'lj', 'nj', 's=', 'z='] string = input() for i in croatia_alpha: string = string.replace(i, '0') return len(string) res = solution() print(res) | cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 1712번 손익분기점 (0) | 2020.10.08 |
---|---|
[백준] 1316번 그룹 단어 체커 (0) | 2020.10.07 |
[백준] 2908번 상수 (0) | 2020.10.06 |
[백준] 1152번 단어의 개수 (0) | 2020.10.06 |
[백준] 1157번 단어 공부 (0) | 2020.10.06 |
Comments