본문 바로가기

코테/프로그래머스

[프로그래머스] 없는 숫자 더하기(JAVA)

프로그래머스 lv1 - 없는 숫자 더하기이다.

내가 한 풀이는 다음과 같다. 

class Solution {
       public int solution(int[] numbers) {
        int answer = 0;
        int[] answerArr = new int[10];

        for (int i = 0; i < answerArr.length; i++) {
            answerArr[i] = i;
        }

        for (int i = 0; i < numbers.length; i++) {
            answerArr[numbers[i]] = 0;
        }

        for (int num: answerArr) {
            answer += num;
        }

        return answer;
    }
}