반응형
https://programmers.co.kr/learn/courses/30/lessons/68644
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
#include <set>
using namespace std;
vector<int> solution(vector<int> numbers) {
set<int> result;
size_t location=0;
int i=0;
while(numbers.size()-1 != location ){
i++;
if(numbers.size() == i){
location++;
i= location;
continue;
}
int add = numbers[location] + numbers[i];
result.insert(add);
}
vector<int> answer(result.begin(), result.end());
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 최소직사각형 (0) | 2022.03.16 |
---|---|
[프로그래머스][C] 2016년 (0) | 2022.03.16 |
[프로그래머스][C++] 예산 (0) | 2022.03.16 |
[프로그래머스][C++] 3진법 뒤집기 (0) | 2022.03.16 |
[프로그래머스][C++] 약수의 개수와 덧셈 (0) | 2022.03.16 |