JAVA/Algorithm

[프로그래머스/java] 주식가격

nang. 2020. 12. 25. 23:29
반응형
SMALL

https://programmers.co.kr/learn/courses/30/lessons/42584

 

코딩테스트 연습 - 주식가격

초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요. 제한사항 prices의 각 가격은 1 이상 10,00

programmers.co.kr

 

 

  • 감소하는 길이 측정
class Solution {
    public int[] solution(int[] prices) {
        int[] answer = new int[prices.length];
        
        int i, j;

        for(int i = 0; i < prices.length; i++) {
            for(int j = i+1; j < prices.length; j++) { // 하나 고정해놓고 하나씩 늘려가며 추가
                answer[i]++;

                if(prices[i] > prices[j]) { // 앞에가 더 크면 감소했다는거니까 그만
                    break;
                }
            }
        }
        
        return answer;
    }
}

 

 

반응형
LIST