Stack/Queue 프로그래머스 자바 ‘주식가격’ 문제풀이
Problem
초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 유지된 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.
- prices의 각 가격은 1 이상 10,000 이하인 자연수입니다.
- prices의 길이는 2 이상 100,000 이하입니다.
Solution
public class StockPrice { public int[] solution(int[] prices) { int[] answer = new int[prices.length]; for(int i = 0; i < prices.length-1; i++) { for(int j = i+1; j < prices.length; j++) { if(prices[i] > prices[j] || j == prices.length-1) { answer[i]++; break; } else answer[i]++; } } return answer; } }