티스토리 뷰
문제 출처: https://programmers.co.kr/learn/courses/30/lessons/42748?language=python3
1. 조금 더러운 풀이
def solution(array, commands):
answer = []
for i in range(len(commands)):
temp = array[commands[i][0]-1:commands[i][1]]
temp.sort()
answer.append(temp[commands[i][2]-1])
return answer
2. 깔끔한 풀이
# 정렬
def solution(array, commands):
answer = []
for x,y,z in commands:
temp = array[x-1:y]
temp.sort()
answer.append(temp[z-1])
return answer
- 배열의 '열의 개수'가 고정되어 있다면 for문에서 x,y,z와 같이 접근 가능
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 도둑질(level4) (0) | 2019.11.22 |
---|---|
[C++]프로그래머스 - 네트워크(level3) (0) | 2019.11.22 |
[C++]프로그래머스 - 탑(level2) (0) | 2019.11.21 |
[C++]프로그래머스 - 가운데 글자 가져오기(level1) (0) | 2019.11.21 |
[Python]프로그래머스 - 2*n타일링(level3) (0) | 2019.11.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- dictionary
- 구현
- Python
- 문자열
- programmers
- 괄호
- C++
- left join
- 2020 KAKAO BLIND RECRUITMENT
- 순열
- 재귀
- 프로그래머스
- SWExpert
- 정렬
- 파이썬
- 딕셔너리
- BOJ
- 해시
- 백준
- Permutation
- 스택
- 힙
- combination
- 코딩테스트
- SW Expert
- hash
- 문자열처리
- 완전탐색
- 우선순위큐
- 2019 Kakao Blind Recruitment
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함