[JAVA] 프로그래머스 알고리즘 문제풀이 - Level 1 (69~71번 문제풀이) / Level 0 (224/224)
69. 개인정보 수집 유효기간 import java.util.*; class Solution { public int[] solution(String today, String[] terms, String[] privacies) { Map map = new HashMap(); List list = new ArrayList(); // 주어진 날짜를 . 기준으로 나눠서 저장 후 year, month, day에 맞는 정수형으로 저장 String[] todays = today.split("\\."); int year = Integer.parseInt(todays[0]); int month = Integer.parseInt(todays[1]); int day = Integer.parseInt(todays[2]); /..