250x250
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 |
Tags
- NIO
- map
- 스프링부트
- set
- JPA
- html
- alter
- string
- Java
- CSS
- union_find
- spring boot
- List
- sql
- priority_queue
- GC로그수집
- scanner
- deque
- 리소스모니터링
- BFS
- math
- Properties
- dfs
- Calendar
- javascript
- 스택
- date
- Union-find
- 힙덤프
- 큐
Archives
- Today
- Total
매일 조금씩
프로그래머스 level1 : 개인정보 수집 유효기간 - Java 본문
728x90
반응형
import java.util.*;
import java.lang.Math;
class Solution {
public int[] solution(String today, String[] terms, String[] privacies) {
List<Integer> answer = new ArrayList<>();
Map<String, Integer> termMap = new HashMap<>();
int day = getDate(today);
for(String term : terms){
String[] t = term.split(" ");
termMap.put(t[0], Integer.parseInt(t[1]));
}
for(int i = 0; i < privacies.length; i++){
String[] p = privacies[i].split(" ");
int endDay = getDate(p[0]) + termMap.get(p[1]) * 28 - 1;
if(day > endDay) {answer.add(i+1); }
}
return answer.stream().mapToInt(i -> i).toArray();
}
public int getDate(String today){
System.out.println(today);
String[] date = today.split("\\.");
int year = Integer.parseInt(date[0]) * 28 * 12;
int month = Integer.parseInt(date[1]) * 28;
int day = Integer.parseInt(date[2]);
return year + month + day;
}
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
프로그래머스 level1 : 과일 장수 - Java (0) | 2023.06.02 |
---|---|
프로그래머스 level1 : 크기가 작은 부분문자열 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 덧칠하기 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 바탕화면 정리 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 공원 산책 - Java (0) | 2023.06.02 |