Written by
최태열
on
on
[Python][프로그래머스][Level1] K번째 수
[Python][프로그래머스][Level1] K번째 수
코드
def solution(array, commands):
return [sorted(array[i-1:j])[k-1] for i,j,k in commands]
i-1 ~ j-1 까지의 array를 남기고 정렬하고 남은 k-1 번째 수를 모아서 반환한다.
Discussion and feedback