이번에 풀어본 문제는
프로그래머스 없는 숫자 더하기 입니다.
class Solution {
public int solution(int[] numbers) {
int answer = 45;
for(int i : numbers){
answer -= i;
}
return answer;
}
}
answer 변수를 0부터 9까지의 합인 45로 초기화 해놓고, 배열에 보유한 숫자만 빼주면 해결됩니다.
레벨1 문제이므로 가볍게 넘어가겠습니다 !^^