Study Record

[프로그래머스] Level1 - 없는 숫자 더하기 본문

알고리즘

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

초코초코초코 2021. 12. 2. 17:57
728x90
#include <string>
#include <vector>

using namespace std;

int solution(vector<int> numbers) {
    int answer = 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9;
    
    for(int i=0; i<numbers.size(); i++){
        answer -= numbers[i];    
    }
    
    return answer;
}
728x90