Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Docker
- CI/CD
- SQL
- Spark Partitioning
- Spark
- Spark 실습
- etl
- backfill
- 데이터 파이프라인
- Salting
- Spark SQL
- AQE
- 빅데이터
- off heap memory
- k8s
- spark executor memory
- colab
- Kubernetes
- Speculative Execution
- topic
- disk spill
- Kafka
- mysql
- redshift
- DataFrame Hint
- KDT_TIL
- Dag
- aws
- Spark Caching
- Airflow
Archives
- Today
- Total
목록코딩테스트 (1)
JUST DO IT!
[CT] 주차 요금 계산
문제 : https://school.programmers.co.kr/learn/courses/30/lessons/92341 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 import math # 요금 계산 함수 def Cal_fees(fees,minutes): return fees[1] + math.ceil(max(0, (minutes - fees[0])) / fees[2]) * fees[3] def solution(fees, records): inCarDic = {} feeDic = {} #입차 내역 등록 및 출차 차량 주차시간 계산 for e i..
코딩테스트
2023. 4. 11. 00:38