일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이더리움 #ethereum
- mac hive
- code=0)
- 카카오 자물쇠와 열쇠
- hive beeline
- hive beeline 설정
- Safe mode is ON
- Failed to connect to localhost:10000
- mac hadoop
- 카카오 2020 코딩테스트
- 자소서 시간 줄이기
- Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000
- 도커 교과서
- 자소서 빨리
- 자소서 빨리 쓰는 법
- mac hadoop 설정
- hive beeline 실행
- mac hadoop 3
- Resources are low on NN
- mac hadoop 설치
- 백준 18428
- hive beeline 에러
- 기업 조사 빨리 하는 법
- 자소서 너무 오래 걸림
- hadoop safe mode
- mac hive 3
- 카카오 2020 코테
- hadoop safe mode leave
- 이더리움
- is not allowed to impersonate hive (state=08S01
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 |