없는 숫자 더하기 Lv. 1

박영준·2022년 11월 21일
0

코딩테스트

목록 보기
6/300
class Solution {
    public int solution(int[] numbers) {
        int answer = -1;
        return answer;
    }
}

해결법

방법 1

class Solution {
    public int solution(int[] numbers) {
    	//'numbers에서 찾을 수 없는 0부터 9까지의 숫자를 모두 찾아 더한 수를 return 하도록'라는 조건에 따라
        //0~9까지의 모든 수의 합
        int answer = 45;
    
        for (int i = 0; i < numbers.length; i++) {
            answer -= numbers[i];
        }
        
        return answer;
    }
}
  • 1~9 더한 값 45 - numbers에 들어있는 정수들

없는 숫자 더하기 Lv. 1

profile
개발자로 거듭나기!

0개의 댓글