#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> prices) {
vector<int> answer;
for(int i=0; i < prices.size(); i++){
int cnt =0;
for(int j=i+1; j < prices.size(); j++){
cnt++;
if(prices[i]>prices[j]){
break;
}
}
answer.push_back(cnt);
}
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 스킬트리 (0) | 2019.07.22 |
---|---|
[프로그래머스] 탑 (0) | 2019.07.22 |
[백준] 10819 | 차이를 최대로 (0) | 2019.05.14 |
[백준] 1476 | 날짜계산 (0) | 2019.05.09 |
[백준] 2309 | 일곱 난쟁이 (0) | 2019.05.09 |