E.Clone
개발하는 96년생 Null_Reference_Exception
제목: 개인정보 수집 유효기간(2023 KAKAO BLIND RECRUITMENT) 난이도: Lv.1 사용언어: Python def solution(today, terms, privacies): answer = [] today = [int(i) for i in today.split('.')] terms_dict = {key: int(value) for key, value in (item.split() for item in terms)} for data_n in range(len(privacies)): data = privacies[data_n] term_type = data.split()[1] date = [int(i) for i in data.split()[0].split('.')] date[1] +=..