본문 바로가기
알고리즘/프로그래머스 1단계

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

by lanuarius19 2022. 4. 25.
728x90

프로그래머스 1단계
없는 숫자 더하기

https://programmers.co.kr/learn/challenges

 

문제 설명

 

없는 숫자 더하기

 

 

 

 

풀이

 

class Solution {
    public int solution(int[] numbers) {
        int answer = 45;
        
        for (int number : numbers) {
            answer -= number;
        }
        
        return answer;
    }
}

 

728x90

댓글