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