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;
}
}
결과
'코딩 문제 > 프로그래머스' 카테고리의 다른 글
프로그래머스 - 코딩테스트 - Level1 - 3진법 뒤집기 (0) | 2021.02.26 |
---|---|
프로그래머스 - 코딩테스트 - Level1 - 2016 (0) | 2021.02.26 |
프로그래머스 - 코딩테스트 - Level2 - 124 나라의 숫자 (0) | 2021.02.22 |
프로그래머스 - 코딩테스트 - Level2 - 기능개발 (0) | 2021.02.22 |
프로그래머스 - 코딩테스트 - Level1 - K번째수 (0) | 2021.02.22 |