문제[프로그래머스] 개인정보 수집 유효기간 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답def solution(today, terms, privacies): answer = [] alpha = [] month = [] #문자로 되어있는 날짜를 숫자로 변경했습니다. todayA = [int(today[0:4]), int(today[5:7]), int(today[8:10])] # terms에 있는 문자와 숫자를 나누어주었습니다. for i in range(0, len(terms)): if len(te..