문제 :
오늘 재택근무 중에 팀장님한테 급 대면면담 호출을 받았다,, ^^ 행복하다...
전철에 사람이 정말 없어서 노트북을 꺼내 Level 1 문제를 슬렁 풀어봤다...
Solution
def solution(array, commands):
answer = []
for a in range(len(commands)):
i=commands[a][0]
j=commands[a][1]
k=commands[a][2]
tmp=array[i-1:j] #slice
tmp.sort()
answer.append(tmp[k-1])
return answer
슬라이스로 풀었당,,
'Problem Solving > Programmers' 카테고리의 다른 글
그리디 (Level 1) : 체육복 (Python, copy 라이브러리) (0) | 2021.05.17 |
---|---|
완전탐색 (Level 1) : 모의고사 (Python) (0) | 2021.05.10 |
스택/큐 (Level 2) : 주식가격 (Python) (0) | 2021.05.09 |
DFS/BFS (Level 2) : 타겟 넘버 (Python) (0) | 2021.05.08 |
해시 (Level 1) : 완주하지 못한 선수 (Python Dictionary, Counter) (0) | 2021.05.05 |