첫번째라는 의미는 index가 0이라는 것임
이에 맞춰서 배열을 잘라주면 됨
def solution(array, commands):
answer=[]
for x in commands:
cut=array[x[0]-1:x[1]]
indx=x[2]-1
cut.sort()
answer.append(cut[indx])
return answer
출처 https://programmers.co.kr/learn/courses/30/lessons/42748?language=python3
'알고리즘 문제' 카테고리의 다른 글
프로그래머스 프린터 (0) | 2018.10.02 |
---|---|
띄어쓰기로 구분된 숫자로 이루어진 문자열 (0) | 2018.10.02 |
프로그래머스 문자열 내림차순으로 배치하기 (0) | 2018.09.29 |
프로그래머스 완주하지 못한 선수 (0) | 2018.09.29 |
14888번 연산자 끼워넣기 백준 BOJ (0) | 2018.04.14 |