#include <string>
#include <vector>
using namespace std;
vector<int> sort(vector<int> a){
int tmp = 0;
for(int i=0; i < a.size()-1; i++){
for(int j = i+1;j < a.size(); j++){
if(a[i]>a[j]){
tmp = a[i];
a[i] = a[j];
a[j] = tmp;
}
}
}
return a;
}
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.size()==0)
answer.push_back(-1);
else
answer = sort(answer);
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 약수의 합 (0) | 2019.07.22 |
---|---|
[프로그래머스] 수박수박수박수박수박수? (0) | 2019.07.22 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2019.07.22 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2019.07.22 |
[프로그래머스] 2016년 (0) | 2019.07.22 |