No Rules Rules

없는 숫자 더하기 (feat. 프로그래머스, 86051번) 본문

생활/코테

없는 숫자 더하기 (feat. 프로그래머스, 86051번)

개발하는 완두콩 2022. 7. 21. 20:48
728x90
반응형

없는 숫자 더하기
https://programmers.co.kr/learn/courses/30/lessons/86051

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

반응형
// woohyeon.kim
#include <string>
#include <vector>

using namespace std;

int solution(vector<int> numbers) {
    auto answer = 45;       // 0 ~ 9의 총합
    for(const auto& number : numbers)
        answer -= number;
    return answer;
}
// *&)*@*
728x90
반응형
Comments