Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- SW Expert Academy
- Docker
- programmers
- 편스토랑
- Baekjoon
- dacon
- 파이썬
- 우분투
- 편스토랑 우승상품
- AI 경진대회
- 캐치카페
- PYTHON
- 맥북
- gs25
- hackerrank
- leetcode
- 프로그래머스 파이썬
- 데이콘
- 코로나19
- github
- 더현대서울 맛집
- 자연어처리
- ChatGPT
- ubuntu
- 금융문자분석경진대회
- 백준
- Kaggle
- Git
- 프로그래머스
- Real or Not? NLP with Disaster Tweets
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 스택/큐 : 주식가격 (Python) 본문
728x90
반응형
1일 1문제 20일차!
오늘의 문제는 프로그래머스의 주식가격 입니다.
def solution(prices):
answer = []
for i in range(len(prices)):
check_num = 0
for j in range(i+1, len(prices)):
check_num = check_num + 1
if prices[i] > prices[j]:
break
answer.append(check_num)
return answer
이중 for문을 활용하여 문제를 해결해보았습니다.
효율성 부분에서 막힐 줄 알았는데 통과가 되었습니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 완전탐색 : 소수 찾기 (Python) (0) | 2020.02.28 |
---|---|
[Programmers] 해시 : 베스트앨범 (Python) (2) | 2020.02.27 |
[Programmers] 스택/큐 : 기능개발 (Python) (0) | 2020.02.25 |
[Programmers] 해시 : 전화번호 목록 (Python) (9) | 2020.02.24 |
[Programmers] 완전탐색 : 모의고사 (Python) (0) | 2020.02.22 |
Comments