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
- Lv2
- 두원사이의정수쌍
- 5강클로저
- 이중지도
- c++
- 코어자바스크립트
- 정렬
- 최소스패닝트리
- div2개
- solved.ac골드
- 지도 여러개
- 우박수열정적분
- 비트마스크
- 백준 알고리즘
- 백준알고리즘
- 타겟넘버
- 알고리즘 문제풀이
- Lv3
- JS스터디
- DP
- pccp기출문제
- 프로그래머스
- [pccp 기출문제]
- solved.ac플래티넘
- React.StrictMode
- JS
- 알고리즘문제풀이
- 2023카카오블라인드코테
- 스택
- 과제진행하기
Archives
- Today
- Total
호지
[프로그래머스] 개인정보 수집 유효기간 문제풀이 JS 본문
우선 각 term에 대해 유효기간을 저장했다.
그리고 privacies를 탐색하여, 해당 날짜에서 today까지 걸린 일 수를 계산한다.
이 후 이것을 28일인 달로 계산해서 유효기간이 지난 index만 answer에 push한다.
function solution(today, terms, privacies) {
let termList = {};
let answer = [];
for (const term of terms) {
const [a, b] = term.split(" ");
termList[a] = parseInt(b);
}
const [endYear, endMonth, endDay] = today.split(".").map(Number);
const endDate = endYear * 12 * 28 + endMonth * 28 + endDay;
for (let i = 1; i <= privacies.length; i++) {
const [date, term] = privacies[i - 1].split(" ");
const [startYear, startMonth, startDay] = date.split(".").map(Number);
const startDate = startYear * 12 * 28 + startMonth * 28 + startDay;
if (termList[term] <= (endDate - startDate) / 28) {
answer.push(i);
}
}
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 문자열 나누기 문제풀이 JS (0) | 2023.07.26 |
---|---|
[프로그래머스] 가장 가까운 같은 글자 문제풀이 JS (0) | 2023.07.25 |
[프로그래머스] 타겟 넘버 문제풀이 JS (0) | 2023.07.20 |
[프로그래머스] 요격 시스템 문제풀이 JS (0) | 2023.07.20 |
[프로그래머스] 게임 맵 최단거리 문제풀이 JS (0) | 2023.07.20 |
Comments