-
Level 1 > 나누어 떨어지는 숫자 배열프로그래머스(Programmers) 2018. 8. 8. 15:05반응형
https://programmers.co.kr/learn/courses/30/lessons/12910
1. 문제
2. 알고리즘
키워드 - 구현, 배열
3. 코드
12345678910111213141516171819202122#include <string>#include <vector>#include <algorithm>using namespace std;vector<int> solution(vector<int> arr, int divisor) {vector<int> answer;sort(arr.begin(), arr.end());const int size = arr.size();for(int i=0; i<size; i ++) {if(arr[i] % divisor == 0)answer.push_back(arr[i]);}if(answer.size() == 0) {answer.push_back(-1);}return answer;}cs 반응형'프로그래머스(Programmers)' 카테고리의 다른 글
Level 1> 문자열 내 p와 y의 개수 (0) 2018.08.08 Level 1 > 두 정수 사이의 합 (0) 2018.08.08 프로그래머스 > Level 1 > 가운데 글자 가져오기 (0) 2018.08.08 프로그래머스 사용자 제작 문제 > 소수의 합 (0) 2018.07.11 프로그래머스 Level 3 > 가장 긴 펠린드롬 (0) 2018.07.03