#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> arr, int divisor) {
vector<int> answer;
vector<int> no;
no.push_back(-1);
for(int i = 0 ; i < arr.size(); i++) {
if(arr[i] % divisor == 0) answer.push_back(arr[i]);
}
sort(answer.begin(), answer.end());
return answer.empty() == true ? no : answer;
}
'Problem Solving > 프로그래머스' 카테고리의 다른 글
구명보트 (0) | 2022.01.16 |
---|---|
실패율 (0) | 2022.01.16 |
문자열 다루기 기본 (0) | 2022.01.16 |
문자열 내 p와 y의 개수 (0) | 2022.01.16 |
스킬트리 (0) | 2022.01.16 |