문제 :
정수 배열 numbers가 주어집니다. numbers에서 서로 다른 인덱스에 있는 두 개의 수를 뽑아 더해서 만들 수 있는 모든 수를 배열에 오름차순으로 담아 return 하도록 solution 함수를 완성해주세요.
제한사항 :
- numbers의 길이는 2 이상 100 이하입니다.
- numbers의 모든 수는 0 이상 100 이하입니다.
입출력 예 :
numbers | result |
[2,1,3,4,1] | [2,3,4,5,6,7] |
[5,0,2,7] | [2,5,7,9,12] |
코드 :
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> numbers) {
vector<int> answer;
for(int i=0;i<numbers.size();i++){
int sum=0;
for(int j=0;j<numbers.size();j++){
if(i==j) continue;
sum=numbers[i]+numbers[j];
if(find(answer.begin(),answer.end(),sum)==answer.end())
answer.push_back(sum);
}
}
sort(answer.begin(),answer.end());
return answer;
}
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스/level1/c++] 완주하지 못한 선수 (0) | 2021.01.08 |
---|---|
[프로그래머스/level1/c++] 문자열을 정수로 바꾸기 (0) | 2021.01.08 |
[프로그래머스/level1/c++] 수박수박수박수박수박수? (0) | 2021.01.08 |
[프로그래머스/level1/c++] 소수찾기 (0) | 2021.01.08 |
[프로그래머스/level1/c++] 서울에서 김서방 찾기 (0) | 2021.01.07 |