https://school.programmers.co.kr/learn/courses/30/lessons/42748
def solution(array, commands):
answer = []
for c in commands:
i = c[0]
j = c[1]
k = c[2]
slice_list = array[i - 1:j]
slice_list.sort()
answer.append(slice_list[k - 1])
return answer
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 부족한 금액 계산하기 Python (0) | 2024.05.06 |
---|---|
[Programmers] 프로그래머스 성격 유형 검사하기 Python (0) | 2024.05.05 |
[Programmers] 프로그래머스 가장 먼 노드 Python (0) | 2024.05.03 |
[Programmers] 프로그래머스 개미군단 Python (2) | 2024.03.24 |
[Programmers] 프로그래머스 삼총사 Python (0) | 2024.03.22 |