티스토리 뷰
문제 출처 - https://programmers.co.kr/learn/courses/30/lessons/12900
def solution(prices):
answer = []
for i in range(len(prices)):
cnt = 0
for j in range(i+1,len(prices)):
cnt += 1
if prices[i] > prices[j]:
break;
answer.append(cnt)
return answer
answer.append(cnt)를 이중for문 안에서 하면 안됨
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 도둑질(level4) (0) | 2019.11.22 |
---|---|
[C++]프로그래머스 - 네트워크(level3) (0) | 2019.11.22 |
[C++]프로그래머스 - 탑(level2) (0) | 2019.11.21 |
[C++]프로그래머스 - 가운데 글자 가져오기(level1) (0) | 2019.11.21 |
[Python]프로그래머스 - K번째수(level1) (0) | 2019.11.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 코딩테스트
- 2020 KAKAO BLIND RECRUITMENT
- 구현
- 정렬
- 스택
- 백준
- 해시
- 파이썬
- SWExpert
- 재귀
- 괄호
- dictionary
- Python
- combination
- 완전탐색
- Permutation
- 순열
- programmers
- left join
- 2019 Kakao Blind Recruitment
- C++
- 딕셔너리
- BOJ
- 문자열처리
- 힙
- 프로그래머스
- 문자열
- hash
- 우선순위큐
- SW Expert
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함