class Solution {
public int solution(int[] numbers) {
int answer = 45;
for (int number : numbers){
answer -= number;
}
return answer;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 완주하지 못한 선수 (0) | 2023.03.13 |
---|---|
[프로그래머스/자바] 숫자 문자열과 영단어 (0) | 2023.03.13 |
[프로그래머스/자바] 점의 위치 구하기 (0) | 2023.03.13 |
[프로그래머스/자바] 중복된 숫자 개수 (0) | 2023.03.09 |
[프로그래머스/자바] 배열 원소의 길이 (0) | 2023.03.08 |