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 |
Tags
- 파이썬
- cos pro
- issue
- 분할정복
- Python
- 개발
- DART
- 안드로이드스튜디오
- android
- Algorithm
- 동적계획법
- Flutter
- BAEKJOON
- 코테
- DFS
- vuejs
- 코딩테스트
- AndroidStudio
- 알고리즘
- cos
- codingtest
- 백준
- django
- cos pro 1급
- 안드로이드
- C++
- Vue
- DFS와BFS
- 코드품앗이
- 동적계획법과최단거리역추적
Archives
- Today
- Total
목록cos 1급 1차 3번 python (1)
Development Artist
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/d79K10/btruh7Xj3C4/eNehErFkakL3THgg8Ku871/img.png)
문제 유형 빈칸 난이도 easy Note Nothing Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def func_a(numA, numB, exp): if exp == '+': return numA + numB elif exp == '-': return numA - numB elif exp == '*': return numA * numB def func_b(exp): for index, value in enumerate(exp): if value == '+' or value == '-' or value == '*': return index def func_c(exp, idx): numA = int(exp[:idx]) numB = in..
Algorithm/COS
2022. 2. 24. 20:24