https://programmers.co.kr/learn/courses/30/lessons/86051
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> numbers) {
int answer = -1;
int zerotonine = 45;
int vector_plus = 0;
// 0 ~ 9 까지의 덧셈은 = 45
for (int i = 0; i < numbers.size(); i++)
{
vector_plus += numbers[i];
}
answer = zerotonine - vector_plus;
return answer;
}
'알고리즘 > Coding Test' 카테고리의 다른 글
소수 만들기 C++ (0) | 2022.05.19 |
---|---|
음양 더하기 C++ (0) | 2022.05.19 |
키패드 누르기 C++ (0) | 2022.05.19 |
숫자 문자열과 영단어 C++ (0) | 2022.05.18 |
신규 아이디 추천 C++ (0) | 2022.05.18 |