본문 바로가기
IT_tech/알고리즘

프로그래머스-주식가격-Java

by 신드로 2020. 7. 20.


Temp 배열을 활용하여 값 누적

class Solution {
public int[] solution(int[] prices) {
int[] answer = new int[prices.length];
int[] temp = new int[prices.length];
temp=prices;

for(int i=0;i<prices.length;i++){
for(int j=i+1;j<prices.length;j++){
if(temp[i]<=prices[j]){
answer[i]++;
}if(temp[i]>prices[j]){
answer[i]++;
break;
}
}
}
return answer;
}

'IT_tech > 알고리즘' 카테고리의 다른 글

백준) 2798 블랙잭 -JAVA  (0) 2020.07.23
프로그래머스)기능개발-java  (0) 2020.07.21
프로그래머스)체육복-Java  (0) 2020.07.17
백준)10870 피보나치 수 5 - JAVA  (0) 2020.07.11
백준)10872 팩토리얼 - JAVA  (0) 2020.07.10