본문 바로가기
Study/Coding Test

[프로그래머스] K번째수 Python, C++

by 들숨날숨흡 2023. 8. 1.
728x90

https://school.programmers.co.kr/learn/courses/30/lessons/42748

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

(1) C++

#include <string>
#include <vector>
#include <string.h>
#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> array2;
        for(int j = commands[i][0] - 1; j < commands[i][1]; j++){
            array2.push_back(array[j]);
        }
        sort(array2.begin(), array2.end());
        answer.push_back(array2[commands[i][2] - 1]);
    }
    return answer;
}

(2) Python

def solution(array, commands):
    answer = []
    for i in commands:
        split_array = array[i[0] - 1 : i[1]]
        split_array.sort()
        answer.append(split_array[i[2] - 1])
    return answer
728x90