class Solution {
public int solution(int[] numbers, int n) {
int answer = 0;
for(int num : numbers) {
answer += num;
if(answer > n) break;
}
return answer;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 배열의 유사도 (0) | 2023.05.02 |
---|---|
[프로그래머스/자바] 피보나치 수 (0) | 2023.05.02 |
[프로그래머스/자바] 조건에 맞게 수열 변환하기 1 (0) | 2023.05.01 |
[프로그래머스/자바] 수 조작하기 1 (0) | 2023.05.01 |
[프로그래머스/자바] n 번째 원소부터 (0) | 2023.05.01 |