def solution(array, commands):
return [sorted(array[i-1:j])[k-1] for i, j, k in commands]
: list.sort() vs sorted(list) 의 차이점을 알자!
sort로 했다가 오류나서.. 구글링 해서 sorted로 바꿨더니, 성공!
def solution(array, commands):
return list(map(lambda x:sorted(array[x[0]-1:x[1]])[x[2]-1], commands))
: 람다 사용.