본문 바로가기
프로그래밍/코딩 테스트

프로그래머스 코딩테스트 연습 문제 풀어보기 - Java 자바 - 주식가격

by nisne 2020. 9. 18.

프로그래머스 코딩테스트 연습 문제 풀어보기

 

문제) 초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.

 

prices  
[1, 2, 3, 2, 3]

return

[4, 3, 1, 1, 0]

 

문제에 대한 자세한 설명은 아래 링크에서 확인할 수 있어요.

 

 

코딩테스트 연습 - 주식가격

초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요. 제한사항 prices의 각 가격은 1 이상 10,00

programmers.co.kr

 

그럼 즐감 ^_^

 

class Solution {
    public int[] solution(int[] prices) {
    	
    	int[] answer = new int[prices.length];
    	
    	for (int i = 0; i < prices.length; i++) {
    		int count = 0;
    		for (int j = i+1; j < prices.length; j++) {  
				if(prices[i] <= prices[j]) {
					count++;
				}//if end
				answer[i] = count;
			}//for end
		}//for end
        return answer;
    }
}

 

영어를 어느 정도 잘하면 프로그래밍에도 많은 도움이 되더군요.

영어를 배울 수밖에 없다면... ^_^

 

 

댓글