250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- YOLOv5
- pcce 기출문제
- 파이썬 몫
- css
- 파이썬
- count
- 설계
- Join
- 프로그래머스
- GIT
- ORDER BY
- where
- python
- Len
- List Comprehension
- sql
- map
- 아이엠어바텐더
- 슬라이싱
- 코딩테스트 연습
- Python3
- Django
- html
- 백준
- 데이터
- 단어 공부
- date_format
- 파이썬 슬라이싱
- SQL 고득점 Kit
- 프로젝트
Archives
- Today
- Total
목록크로아티아 알파벳 (1)
nan + nan = 2nan

코드 입력 test = input() list_cro = ['c=', 'c-', 'd-', 'lj', 'nj', 's=', 'z='] cnt = 0 while True: if len(test) >= 4: if test[:3] == 'dz=': cnt += 1 test = test[3:] elif test[:2] in list_cro: cnt += 1 test = test[2:] else: cnt += 1 test = test[1:] elif len(test) == 3: if test == 'dz=': cnt += 1 break elif test[:2] in list_cro: cnt += 1 test = test[2:] else: cnt += 1 test = test[1:] elif len(test) ==..
Python/백준 알고리즘
2023. 1. 16. 19:30