programmers.co.kr/learn/courses/30/lessons/42748
def solution(array, commands):
answer = []
for command in commands :
ans = array[command[0]-1:command[1]]
ans.sort()
answer.append(ans[command[2]-1])
return answer
정확성 테스트
테스트 1 〉 | 통과 (0.00ms, 10MB) |
테스트 2 〉 | 통과 (0.01ms, 10MB) |
테스트 3 〉 | 통과 (0.01ms, 10.1MB) |
테스트 4 〉 | 통과 (0.00ms, 10.2MB) |
테스트 5 〉 | 통과 (0.01ms, 10.1MB) |
테스트 6 〉 | 통과 (0.01ms, 10.2MB) |
테스트 7 〉 | 통과 (0.01ms, 10.1MB) |
채점 결과
정확성: 100.0
합계: 100.0 / 100.0
'코테' 카테고리의 다른 글
[프로그래머스] <H-Index> 파이썬 (0) | 2021.02.13 |
---|---|
[프로그래머스] <가장 큰 수> 파이썬 (0) | 2021.02.13 |
[프로그래머스] <최대공약수와 최소공배수> 파이썬 (0) | 2021.02.09 |
[프로그래머스] <[카카오 인턴] 키패드 누르기> 파이썬 (0) | 2021.02.09 |
[프로그래머스] <짝수와 홀수> 파이썬 (0) | 2021.02.09 |