level1은 역시 쉽다.
https://programmers.co.kr/learn/courses/30/lessons/42748
def solution(array, commands):
answer = []
for com in commands:
temp = array[com[0]-1:com[1]]
temp.sort()
answer.append(temp[com[2]-1])
return answer
'algorithm > python' 카테고리의 다른 글
프로그래머스/스택,큐/탑 (0) | 2020.03.07 |
---|---|
프로그래머스/정렬/H-Index (0) | 2020.03.07 |
프로그래머스/정렬/가장 큰 수 [실패] (0) | 2020.03.06 |
프로그래머스/해시/완주하지 못한 선수 (0) | 2020.03.05 |
프로그래머스/해시/전화번호 목록 (0) | 2020.03.05 |