티스토리 뷰
💬 문제 설명
초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.
💡제한사항
- prices의 각 가격은 1 이상 10,000 이하인 자연수입니다.
- prices의 길이는 2 이상 100,000 이하입니다.
✏️ 입출력
- 1초 시점의 ₩1은 끝까지 가격이 떨어지지 않았습니다.
- 2초 시점의 ₩2은 끝까지 가격이 떨어지지 않았습니다.
- 3초 시점의 ₩3은 1초뒤에 가격이 떨어집니다. 따라서 1초간 가격이 떨어지지 않은 것으로 봅니다.
- 4초 시점의 ₩2은 1초간 가격이 떨어지지 않았습니다.
- 5초 시점의 ₩3은 0초간 가격이 떨어지지 않았습니다.
🔑Python
def solution(prices):
answer = []
for i in range(len(prices)-1):
seconds = 0 # 유지되는 시간
for j in range(i+1, len(prices)):
if prices[i] <= prices[j]:
seconds += 1
else:
seconds += 1
break
answer.append(seconds)
answer.append(0)
return answer
🔑Java
import java.util.Stack;
class Solution {
public int[] solution(int[] prices) {
int [] answer = new int[prices.length];
int seconds = 0;
int idx = 0;
for(int i = 0 ; i < prices.length; i++){
seconds = 0;
for(int j = i+1; j < prices.length; j++){
seconds += 1;
if(prices[i] > prices[j]){
break;
}
}
answer[idx++] = seconds;
}
return answer;
}
}
'Computer Science > 프로그래머스' 카테고리의 다른 글
[프로그래머스.42839] 완전탐색 - 소수찾기 (0) | 2021.12.22 |
---|---|
[프로그래머스.42840] 완전탐색 - 모의고사 (0) | 2021.12.21 |
[프로그래머스.42583] 스택/큐 - 다리를 지나는 트럭 (0) | 2021.12.10 |
[프로그래머스.42587] 스택/큐 - 프린터 (0) | 2021.12.08 |
[프로그래머스.42586] 스택/큐 - 기능개발 (0) | 2021.12.08 |
댓글