def solution(array, commands):
answer = []
for i in commands:
tmp = array[i[0]-1:i[1]]
tmp.sort()
answer.append(tmp[i[2]-1])
return answer
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스/Python] 피보나치 수(DP) (0) | 2020.12.17 |
---|---|
[프로그래머스/Python] 타겟넘버(DFS) (0) | 2020.12.16 |
[프로그래머스/Python] 모의고사(단순구현) (0) | 2020.12.16 |
[프로그래머스/Python] 카펫(소인수분해) (0) | 2020.12.16 |
[프로그래머스/Python] 완주하지 못한 선수(해쉬) (0) | 2020.12.16 |