Python 자체 정렬함수를 쓰니까 너무 쉬운듯.
https://programmers.co.kr/learn/courses/30/lessons/42748?language=python3
1
2
3
4
5
6
7
8
9
10
11
|
def solution(array, commands):
answer = []
for i in range(len(commands)) :
cal_value = array
cal_value = cal_value[commands[i][0]-1:commands[i][1]]
return answer
|
[알고리즘 풀이] 프로그래머스 : 소수 찾기, Level2(완전탐색) (0) | 2019.04.12 |
---|---|
[알고리즘 풀이] 프로그래머스 : 체육복, Level2(탐욕법) (0) | 2019.04.12 |
[알고리즘 풀이] 프로그래머스 : 더 맵게, Level2(Heap) (0) | 2019.04.12 |
[알고리즘 풀이] 프로그래머스 : 전화번호 목록, Level2(해시) (0) | 2019.04.11 |
[알고리즘 풀이] 프로그래머스 : 탑, Level2(스택/큐) (0) | 2019.04.09 |