문제
정수를 저장한 배열, arr 에서 가장 작은 수를 제거한 배열을 리턴하는 함수, solution을 완성해주세요. 단, 리턴하려는 배열이 빈 배열인 경우엔 배열에 -1을 채워 리턴하세요. 예를들어 arr이 [4,3,2,1]인 경우는 [4,3,2]를 리턴 하고, [10]면 [-1]을 리턴 합니다.
풀이
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> arr) {
vector<int> answer;
if(arr.size()==1) {answer.push_back(-1); return answer;}
arr.erase(min_element(arr.begin(), arr.end()));
return answer = arr;
}
'Algorithm > Programers - C++' 카테고리의 다른 글
[프로그래머스] 직사각형 별찍기 / append (0) | 2022.02.25 |
---|---|
[프로그래머스]정수 내림차순으로 배치하기/sort, stoll, stoi (0) | 2022.02.23 |
[프로그래머스]자릿수 더하기 / to_string (0) | 2022.02.21 |
[프로그래머스]이상한 문자 만들기 (0) | 2022.02.21 |
[프로그래머스]시저암호 (0) | 2022.02.20 |