class Solution {
public int solution(int[] numbers) {
boolean[] arr = new boolean[10];
int target = 0;
for(int i=0; i<numbers.length;i++) {
arr[numbers[i]] = true;
}
for(int i=0; i<10;i++) {
if(!arr[i]) target += i;
}
return target;
}
}
true
, 없으면 false
로 만듬. 그렇게 해서 0~9 사이의 숫자 중 false
일 때 target에 더함.출처 : 프로그래머스 LV1 없는 숫자 더하기