Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- 동적계획법
- cos
- cos pro
- cos pro 1급
- android
- 개발
- codingtest
- django
- 백준
- Algorithm
- 코딩테스트
- 안드로이드
- issue
- Python
- BAEKJOON
- 코테
- vuejs
- 안드로이드스튜디오
- DART
- DFS
- AndroidStudio
- C++
- 파이썬
- 분할정복
- Flutter
- docker
- 코드품앗이
- 동적계획법과최단거리역추적
- DFS와BFS
Archives
- Today
- Total
목록cos pro 1급 경품 당첨자를 구해주세요 python (1)
Development Artist

문제 유형 빈칸 난이도 easy Note 1. 문제를 빠르게 이해할 것. 차례대로 읽지 말고 문제를 적당히 읽고 예시를 본다. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean # 2차 3번 def func_a(n): ret = 1 while n > 0: ret *= 10 n -= 1 return ret def func_b(n): ret = 0 while n > 0: ret += 1 n //= 10 return ret def func_c(n): ret = 0 while n > 0: ret += n%10 n //= 10 return ret def solution(num): next_num = num while True: next_num += ..
Algorithm/COS
2022. 2. 25. 10:04