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
- DirectX
- pccp 기출문제 풀이
- count triplets
- making anagrams
- lock based queue
- lock based stack
- boj 1717
- 지게차와 크레인
- LCS
- PCCE
- ice cream parlor
- dp
- string construction
- the maximum subarray
- find the running median
- boj 11657
- lock free stack
- boj 6443
- 프로그래밍공부
- the longest increasing subsequence
- find the town judge
- 브루트포스
- 2025 프로그래머스 코딩챌린지 1차예선
- special string again
- pcce 기출문제 풀이
- boj 1074
- gas
- c++
- two characters
- DirectX12
Archives
- Today
- Total
목록python 주차요금계산 (1)
오구의코딩모험

[2022 KAKAO BLIND RECRUITMENT] from collections import defaultdict import math def floor(num): if num != int(num): return math.ceil(num) else: return num def time_cal(car_in,car_out="23:59"): car_out_h = car_out.split(":")[0] car_out_m = car_out.split(":")[1] car_in_h = car_in.split(":")[0] car_in_m = car_in.split(":")[1] hour_diff = int(car_out_h)-int(car_in_h) min_diff = int(car_out_m)-int(car..
프로그래밍 공부/프로그래머스
2022. 12. 29. 23:34