728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/42748?language=python3
최종 코드
풀이 시간 5분
- GitHub https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level1_K번째수.py
-
def solution(array, commands): answer = [] for c in commands: answer.append(sorted(array[c[0]-1:c[1]])[c[2]-1]) return answer
728x90
반응형
'코테 노트 > 프로그래머스' 카테고리의 다른 글
Level 2 H-Index Python3 (0) | 2021.06.29 |
---|---|
Level 2 가장 큰 수 Python3 (0) | 2021.06.29 |
Level 2 카펫 Python3 (0) | 2021.06.28 |
Level 2 소수 찾기 Python3 (0) | 2021.06.28 |
Level 1 모의고사 Python3 (0) | 2021.06.28 |