250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(프로그래머스 c++)없는 숫자 더하기 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/86051
0 ~ 9의 숫자의 총합은 45다.
numbers 벡터에서 없는 숫자의 총합이기 때문에,
numbers의 원소를 빼면 답이다.
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> numbers) {
int answer = 45;
for(int i = 0; i < numbers.size(); i++){
answer -= numbers[i];
}
return answer;
}
728x90
반응형
'프로그래머스 알고리즘 > 1단계' 카테고리의 다른 글
(프로그래머스 c++)예산 (0) | 2021.09.28 |
---|---|
(프로그래머스 c++)약수의 개수와 덧셈 (0) | 2021.06.08 |
(프로그래머스 c++)음양 더하기 (0) | 2021.05.06 |
(프로그래머스 c++)로또의 최고 순위와 최저 순위 (0) | 2021.05.06 |
(프로그래머스 JS)나누어 떨어지는 숫자 배열 (0) | 2021.02.25 |