문제 설명
array의 각 element 중 divisor로 나누어 떨어지는 값을 오름차순으로 정렬한 배열을 반환하는 함수, solution을 작성해주세요.
divisor로 나누어 떨어지는 element가 하나도 없다면 배열에 -1을 담아 반환하세요
코드
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> arr, int divisor) {
vector<int> answer;
int num = arr.size();
for(int i =0 ; i< num ; i++){
if(arr[i] % divisor ==0){
answer.push_back(arr[i]);
}
}
if(answer.size()==0){
answer.push_back(-1);
}
else{
sort(answer.begin(), answer.end());
}
return answer;
}
'IT > 알고리즘' 카테고리의 다른 글
[1day 1 solve , 20/07/06] 프로그래머스 크레인 인형 뽑기 lv1 (0) | 2020.07.06 |
---|---|
[프로그래머스/lv1]비밀지도/c++ (0) | 2020.01.27 |
[프로그래머스/lv1]가운데 글자/c++ (0) | 2020.01.25 |
[프로그래머스/lv1]체육복/c++ (0) | 2020.01.25 |
[프로그래머스 / lv1]문자열압축/c++ (0) | 2020.01.25 |