반응형
https://programmers.co.kr/learn/courses/30/lessons/86051
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#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;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 내적 (0) | 2022.03.15 |
---|---|
[프로그래머스][GO] 음양 더하기 (0) | 2022.03.15 |
[프로그래머스][C++] 크레인 인형뽑기 게임 (0) | 2022.03.15 |
[프로그래머스][C++] 키패드 누루기 (0) | 2022.03.15 |
[프로그래머스][C++] 숫자 문자열과 영단어 (0) | 2022.03.15 |