일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 카카오 자물쇠와 열쇠
- Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000
- 카카오 2020 코테
- 자소서 빨리
- mac hive
- code=0)
- 이더리움
- 자소서 시간 줄이기
- 이더리움 #ethereum
- hive beeline 실행
- hadoop safe mode leave
- mac hadoop 설치
- hive beeline 설정
- hive beeline
- 백준 18428
- 자소서 빨리 쓰는 법
- hive beeline 에러
- mac hive 3
- hadoop safe mode
- mac hadoop 3
- mac hadoop
- 자소서 너무 오래 걸림
- 카카오 2020 코딩테스트
- 기업 조사 빨리 하는 법
- Failed to connect to localhost:10000
- is not allowed to impersonate hive (state=08S01
- mac hadoop 설정
- 도커 교과서
- Resources are low on NN
- Safe mode is ON
Archives
- Today
- Total
A seeker after truth
프로그래머스 정렬 문제풀이(1) 본문
문제: https://programmers.co.kr/learn/courses/30/lessons/42748
def solution(array, commands):
return list(map(lambda x:sorted(array[x[0]-1:x[1]])[x[2]-1], commands))
람다 & 맵의 조화에 더 익숙해지고 훈련해야 한다.
'Algorithm > 문제풀이' 카테고리의 다른 글
exercism leap solution (0) | 2020.01.24 |
---|---|
exercism reverse-string solution (0) | 2020.01.24 |
문제5 (0) | 2020.01.08 |
문제4 (0) | 2020.01.08 |
파이썬 수업 문제 분석 3 (0) | 2020.01.07 |