티스토리 뷰
문제 출처 - 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
- 백준
- SWExpert
- Permutation
- 2019 Kakao Blind Recruitment
- SW Expert
- 프로그래머스
- 재귀
- 순열
- 문자열
- 파이썬
- 우선순위큐
- 코딩테스트
- 힙
- hash
- programmers
- 구현
- BOJ
- combination
- 스택
- 정렬
- 괄호
- C++
- 2020 KAKAO BLIND RECRUITMENT
- 문자열처리
- 해시
- Python
- 완전탐색
- 딕셔너리
- dictionary
- left join
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함