[프로그래머스 / C++] 나누어 떨어지는 숫자 배열

Seulguo·2022년 7월 5일
0

Algorithm

목록 보기
2/185
post-thumbnail

🐣 문제

링크 : https://school.programmers.co.kr/learn/courses/30/lessons/12910


🐥 코드

#include <string>
#include <vector>
#include <algorithm>

using namespace std;

vector<int> solution(vector<int> arr, int divisor) {
    vector<int> answer;
    
    for(int i = 0; i < arr.size(); i++){
        if(arr[i] % divisor == 0){
            answer.push_back(arr[i]);
        }
    }
    
    if(answer.empty()){
        answer.push_back(-1);
    }
    
    sort(answer.begin(), answer.end());
    
    return answer;
}

0개의 댓글