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

dev_jo·2022년 6월 5일
0

알고리즘 풀이

목록 보기
5/25
post-custom-banner

문제

주식가격



문제풀이

class Solution {
    public int[] solution(int[] prices) {
        int[] answer = new int[prices.length];
        
        for (int i = 0; i < prices.length; i++) {
            int cnt = 0;
            for (int j = i + 1; j < prices.length; j++) {
                if (prices[i] <= prices[j]) {
                    cnt++;
                }
                else {
                    cnt++;
                    break;
                }
            }
            answer[i] = cnt;
        }
        
        return answer;
    }
}
profile
To be a better developer!!
post-custom-banner

0개의 댓글