본문 바로가기

코딩 문제/프로그래머스

프로그래머스 - 코딩테스트 - Level2 - 주식가격

728x90

 

풀이

 

class Solution {

      public int[] solution(int[] prices) {

            int[] answer = {};

            int count = 0; // 시간(초)

            answer = new int[prices.length];

 

            for(int i=0; i<prices.length-1; i++){

                  count = 0;

                  for(int j=i+1; j<prices.length; j++){

                        count++;

                        if(prices[i] > prices[j]){

                              break;

                        }

                  }

                  answer[i] = count;

            }

 

            return answer;

      }

}

 

결과