https://programmers.co.kr/learn/courses/30/lessons/42748?language=python3
[정답]
def solution(array, commands):
answer = []
for i in commands:
a = i[0]-1
b = i[1]-1
c = i[2]-1
new_array=array[a:b+1]
new_array.sort()
answer.append(new_array[c])
return answer
'알고리즘 공부 > 프로그래머스 > Python3' 카테고리의 다른 글
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2020.11.20 |
---|---|
[프로그래머스] 같은 숫자는 싫어 (0) | 2020.11.20 |
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2020.11.19 |
[프로그래머스] 두 정수 사이의 합 (0) | 2020.11.19 |
[프로그래머스] 짝수와 홀수 (0) | 2020.11.19 |