티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42584
def solution(prices):
answer = [0] * len(prices)
for i in range(len(prices) - 1):
for j in range(i + 1, len(prices)):
answer[i] += 1
if prices[i] > prices[j]:
break
return answer
이중for문을 사용해서 효율성이 떨어지는 것 같긴 하지만
다른 방법이 생각나지 않아서 일단 써버리기~
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python]프로그래머스 - 라면공장(level2) (0) | 2020.02.28 |
---|---|
[Python]프로그래머스 - 더 맵게(level2) (0) | 2020.02.27 |
[Python]프로그래머스 - 쇠막대기(level2) (0) | 2020.02.26 |
[Python]프로그래머스 - 프린터(level2) (0) | 2020.02.26 |
[Python]프로그래머스 - 기능개발(level2) (0) | 2020.02.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 힙
- 우선순위큐
- programmers
- SWExpert
- left join
- BOJ
- 2020 KAKAO BLIND RECRUITMENT
- Python
- 완전탐색
- 백준
- Permutation
- 파이썬
- SW Expert
- 괄호
- 구현
- dictionary
- 문자열처리
- 2019 Kakao Blind Recruitment
- 딕셔너리
- 재귀
- 프로그래머스
- 코딩테스트
- combination
- 스택
- hash
- C++
- 순열
- 해시
- 문자열
- 정렬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함