Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- codecov
- ORM
- Query
- was
- Python
- Unit Testing
- HTTP 완벽 가이드
- Bruteforce
- ws
- TDD
- postreSQL
- stateful
- Gunicorn
- permutations
- Programmers
- Q objects
- stateless
- algorithm
- dictionary
- SQL
- pytest
- Django
- stack&que
- greedy
- combinations
- AWS
- utils
- 백준
- Git
- Stack
Archives
- Today
- Total
해피 코딩!
[프로그래머스] 주식가격 본문
link
# 시간 초과
def solution(prices):
answer = [0] * len(prices)
for index, value in enumerate(prices):
for indent_index, indent_value in enumerate(prices[index+1:]):
if value <= indent_value:
answer[index] +=1
else:
answer[index] +=1
break
return answer
# 시간초과 통과
def solution(prices):
answer = [0] * len(prices)
for index in range(0, len(prices)-1):
for indent_index in range(index+1, len(prices)):
if prices[indent_index] >= prices[index]:
answer[index] +=1
else:
answer[index] +=1
break
return answer
'알고리즘' 카테고리의 다른 글
[백준] 덩치 7568번 (0) | 2020.12.12 |
---|---|
[프로그래머스] 프린터 (0) | 2020.12.12 |
[프로그래머스] 완주하지 못한 선수 (0) | 2020.12.12 |
[프로그래머스] 모의고사 (0) | 2020.12.12 |
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2020.12.12 |
Comments