반응형
https://programmers.co.kr/learn/courses/30/lessons/12935
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
#include <iostream>
using namespace std;
vector<int> solution(vector<int> arr) {
int check=999999;
int location =999999;
for(int i =0; i< arr.size(); i++){
if(check > arr[i]){
check = arr[i];
location = i;
cout << check << ": " << location << endl;
}
}
arr.erase(arr.begin() + location);
if(0 == arr.size()){
arr.push_back(-1);
}
return arr;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 최대공약수와 최소공배수 (0) | 2022.03.20 |
---|---|
[프로그래머스][C] 짝수와 홀수 (0) | 2022.03.20 |
[프로그래머스][C++] 정수 제곱근 판별 (0) | 2022.03.19 |
[프로그래머스][C++] 정수 내림차순으로 배치하기 (0) | 2022.03.19 |
[프로그래머스][C++] 자연수 뒤집어 배열로 만들기 (0) | 2022.03.19 |