https://programmers.co.kr/learn/courses/30/lessons/12910
//나누어 떨어지는 숫자 배열
#include <iostream>
#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.size() == 0)
answer.push_back(-1);
sort(answer.begin(), answer.end());
return answer;
}
int main() {
vector<int> v = {5,9,7,10};
int divisor = 5;
solution(v, divisor);
}
'[알고리즘] 문제풀이 연습' 카테고리의 다른 글
[프로그래머스] 체육복 level 1 (0) | 2019.11.04 |
---|---|
[프로그래머스] 가운데 글자 가져오기 level 1 (0) | 2019.11.04 |
[프로그래머스] 문자열 다루기 기본 level 1 (0) | 2019.11.03 |
[프로그래머스] 자연수 뒤집어 배열로 만들기 (0) | 2019.11.03 |
[프로그래머스] 자릿수 더하기 level 1 (0) | 2019.11.03 |