def solution(array, commands):
answer = []
for a in range(len(commands)):
answer_p = []
for b in array[commands[a][0]-1:commands[a][1]]:
answer_p.append(b)
answer.append(sorted(answer_p)[commands[a][2]-1])
return answer
def solution(array, commands):
answer = []
for x in commands:
first, last, target = x
answer.append(sorted(array[first-1:last])[target-1])
return answer
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 문자열을 정수로 바꾸기 (0) | 2020.07.13 |
---|---|
[프로그래머스/python] 정수 제곱근 판별 (0) | 2020.07.10 |
[프로그래머스/python] 완주하지 못한 선수 (0) | 2020.07.09 |
[프로그래머스/python] 나누어 떨어지는 숫자 배열 (0) | 2020.07.09 |
[프로그래머스/python] 핸드폰 번호 가리기 (0) | 2020.07.09 |