프로그래머스 썸네일형 리스트형 [프로그래머스] 주식가격 import java.util.Stack; class Solution { public int[] solution(int[] prices) { int[] answer = new int[prices.length]; int i; Stack myPrices = new Stack(); myPrices.push(0); for(i=1;i 더보기 [프로그래머스] 기능개발 import java.util.*; class Solution { public int[] solution(int[] progresses, int[] speeds) { int[] answer; int len = progresses.length; answer = new int[len]; int index=0; int answer_idx = 0; int cnt=0; while(index 더보기 이전 1 다음