고객의 약관 동의를 얻어서 수집된 1~n번으로 분류되는 개인정보 n개가 있습니다.
약관 종류는 여러 가지 있으며 각 약관마다 개인정보 보관 유효기간이 정해져 있습니다.
당신은 각 개인정보가 어떤 약관으로 수집됐는지 알고 있습니다. 수집된 개인정보는 유효기간 전까지만 보관 가능하며,
유효기간이 지났다면 반드시 파기해야 합니다.
예를 들어, A라는 약관의 유효기간이 12 달이고, 2021년 1월 5일에 수집된 개인정보가 A약관으로 수집되었다면
해당 개인정보는 2022년 1월 4일까지 보관 가능하며 2022년 1월 5일부터 파기해야 할 개인정보입니다.
당신은 오늘 날짜로 파기해야 할 개인정보 번호들을 구하려 합니다.
모든 달은 28일까지 있다고 가정합니다.
오늘 날짜를 의미하는 문자열 today, 약관의 유효기간을 담은 1차원 문자열 배열 terms와 수집된 개인정보의 정보를
담은 1차원 문자열 배열 privacies가 매개변수로 주어집니다. 이때 파기해야 할 개인정보의 번호를 오름차순으로
1차원 정수 배열에 담아 return 하도록 solution 함수를 완성해 주세요.
function solution(today, terms, privacies) {
var answer = [];
today = new Date(today);
term = terms.map((item) => item.at(0));
exp = terms.map((item) => item.match(/\d{1,3}/)[0]);
idx = 1;
for (let p of privacies) {
collectDay = new Date(p.split(" ")[0]);
collectTerm = p.at(-1);
i = term.findIndex((x) => x === collectTerm);
collectDay.setMonth(collectDay.getMonth() + parseInt(exp[i]));
collectDay.setDate(collectDay.getDate() - 1);
if (collectDay.getDate() > 28) {
collectDay.setMonth(collectDay.getMonth() + 1);
collectDay.setDate(collectDay.getDate() - 28);
}
if (today > collectDay) answer.push(idx);
idx++;
}
return answer;
}
today = new Date(today);
var term = [], exp = [];
console.log(typeof exp, typeof term);
terms.map((item) => {
term.push(item.split(" ")[0]);
exp.push(item.split(" ")[1]);
});
idx = 1;
today
는 오늘 날짜를 Date
객체로 변환한 변수이다.term
은 약관의 종류이다.exp
는 유효기간만 포함된 배열이다.for (let p of privacies) {
collectDay = new Date(p.split(" ")[0]);
collectTerm = p.at(-1);
i = term.findIndex((x) => x === collectTerm);
collectDay.setMonth(collectDay.getMonth() + parseInt(exp[i]));
collectDay.setDate(collectDay.getDate() - 1);
if (collectDay.getDate() > 28) {
collectDay.setMonth(collectDay.getMonth() + 1);
collectDay.setDate(collectDay.getDate() - 28);
}
if (today > collectDay) answer.push(idx);
idx++;
}
return answer
collectDay
는 약관의 수집일을 의미한다.collectTerm
은 수집한 약관의 종류를 의미한다.term
배열에서 수집된 약관과 동일한 약관의 인덱스를 찾고, 수집일에 exp
배열의 유효 달을 더해준다collectDay
가 오늘이 지났을 경우 answer
에 추가해준다.Array.method
사실 그동안, for 문과 forEach그리고 map 등 다양한 순회메소드들의 차이를 정확히 인지하지 못하고 있었다. 배열 관련하여 깊게 스터디한 뒤 포스팅을 올릴 예정이다!