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 pro 1급
- issue
- django
- AndroidStudio
- 안드로이드
- Flutter
- 알고리즘
- 개발
- 동적계획법
- android
- 분할정복
- 코드품앗이
- 동적계획법과최단거리역추적
- 안드로이드스튜디오
- BAEKJOON
- cos
- 코딩테스트
- Vue
- codingtest
- 파이썬
- DFS와BFS
- vuejs
- 백준
- DART
- Algorithm
- DFS
- cos pro
- Python
- C++
Archives
- Today
- Total
목록cos 1급 2차 경품 당첨자를 구해주세요 python (1)
Development Artist
[COS Pro 1급, Python] 2차 3번 : 경품 당첨자를 구해주세요
문제 유형 빈칸 난이도 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