프로그래머스
[프로그래머스] 없는 숫자 더하기
소금_msg
2022. 12. 1. 12:37
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의 모든 합을 빼주면 된다.