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
- 안드로이드
- cos pro 1급
- cos
- DFS
- codingtest
- 동적계획법과최단거리역추적
- 백준
- 파이썬
- AndroidStudio
- 코드품앗이
- android
- 동적계획법
- 분할정복
- Vue
- C++
- 개발
- 안드로이드스튜디오
- DFS와BFS
- Flutter
- vuejs
- Python
- issue
- DART
- django
- Algorithm
- BAEKJOON
- 알고리즘
- 코딩테스트
Archives
- Today
- Total
목록주식으로 최대 수익을 내세요 python (1)
Development Artist
[COS Pro 1급, Python] 1차 10번 : 주식으로 최대 수익을 내세요
문제 유형 한줄 수정 난이도 easy Note Nothing Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(prices): INF = 1000000001; tmp = INF answer = -INF for price in prices: if tmp != INF: answer = max(answer, price - tmp) tmp = min(tmp, price) return answer prices1 = [1, 2, 3]; ret1 = solution(prices1); print("solution 함수의 반환 값은", ret1, "입니다.") prices2 = [3, 1]; ret2 = solution(prices2..
Algorithm/COS
2022. 2. 24. 22:02