728x90
def solution(array, commands):
answer = []
for i in range(len(commands)):
cp_ary=array[commands[i][0]-1:commands[i][1]]
cp_ary.sort()
answer.append(cp_ary[commands[i][2]-1])
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL1 같은숫자는 싫어, python3 (0) | 2019.10.15 |
---|---|
[프로그래머스] LEVEL1 가운데글자 가져오기,python3 (0) | 2019.10.15 |
[프로그래머스] LEVEL1 체육복, python3 (0) | 2019.10.15 |
[프로그래머스] LEVEL1 모의고사, python3, 리스트 자료형 (0) | 2019.10.15 |
190912 (0) | 2019.09.12 |