반응형
프로그래머스
2023 KAKAO BLIND RECRUITMENT
def solution(today, terms, privacies):
answer = []
y, m, d = today.split('.')
#년, 월, 일을 일 단위로 통일
today = int(y)*12*28 + int(m)*28 + int(d)
terms = {x[:1]: int(x[2:])*28 for x in terms}
for i, p in enumerate(privacies):
y, m, d = p.split('.')
d,c = d.split()
p = int(y)*12*28 + int(m)*28 + int(d)
if p+terms[c] <= today:
answer.append(i+1)
return answer
반응형
'DS > Coding Test' 카테고리의 다른 글
[Python] 크레인 인형뽑기 게임 (0) | 2023.05.18 |
---|---|
[Python][BFS] 거리두기 확인하기 (0) | 2023.05.17 |
[Python] 숫자 문자열과 영단어 (0) | 2023.05.16 |
[Python][Greedy] 체육복 (1) | 2023.05.16 |
[Python][dot product] 내적 (0) | 2023.05.15 |