class Solution {
public int solution(int[] numbers) {
int answer = -1;
int allSum = 0;
int numSum =0;
for(int i=0; i<=9; i++){
allSum+=i;
}
for(int i=0; i<numbers.length; i++){
numSum+=numbers[i];
}
answer = allSum-numSum;
return answer;
}
}
0-9까지의 더한 합에서 numbers의 모든 합을 빼주면 된다.
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 콜라츠 추측 (0) | 2022.12.01 |
---|---|
[프로그래머스] 나머지가 1이 되는 수 찾기 (0) | 2022.12.01 |
[프로그래머스] 문자열 다루기 기본 (0) | 2022.12.01 |
[프로그래머스] 이진수 더하기 (0) | 2022.12.01 |
[프로그래머스] 부족한 금액 계산하기 (0) | 2022.11.30 |