728x90
programmers.co.kr/learn/courses/30/lessons/42748
def solution(array, commands):
answer = []
for i in range(len(commands)):
arr = array[commands[i][0]-1:commands[i][1]]
arr.sort()
answer.append(arr[commands[i][2]-1])
return answer
반응형
'전.py' 카테고리의 다른 글
프로그래머스 프린터 (level 2) (0) | 2020.12.30 |
---|---|
프로그래머스 3진법 뒤집기 (level 1) (0) | 2020.12.29 |
프로그래머스 체육복 (level 1) (0) | 2020.12.29 |
최대공약수, 최소공배수 (0) | 2020.12.29 |
프로그래머스 멀쩡한 사각형 (level 2) - 최대공약수 (0) | 2020.12.29 |