#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> answer;
for(int i=0; i<commands.size(); i++)
{
vector<int> test;
for(int j=commands[i][0]-1; j<commands[i][1] ; j++)
test.push_back(array[j]);
sort(test.begin(), test.end());
answer.push_back(test[commands[i][2]-1]);
}
return answer;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 완주하지 못한 선수 (0) | 2024.10.01 |
---|---|
[Level 1][C++] 2016년 (0) | 2024.10.01 |
[Level 1][C++] 문자열 내 마음대로 정렬하기 (0) | 2024.10.01 |
[Level 1][C++] 이상한 문자 만들기 (0) | 2024.09.30 |
[Level 1][C++] 자릿수 더하기 (0) | 2024.09.30 |