본문 바로가기

Algorithm/Programers - C++

[프로그래머스] 제일 작은 수 제거하기 / erase , min_element

문제

정수를 저장한 배열, 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;
}