⚡문제정보


아주아주 긴 문제이지만 조건은 나름 간단합니다.
오늘날짜와 약관의 타입과 유효기간이 담긴 배열 , 약관이 지났는지 안지났는지 확인해야하는 배열
세개가 주어지고 이중 오늘을 기준으로 약관이 지난 케이스들의 index +1 값을 담아서 반환하면 되는 문제입니다.
구조분해할당을 써보기 좋은 문제 같네요
🔍나의 풀이
function solution(today, terms, privacies) {
let map = new Map()
let answer = []
today = today.split(".")
terms.forEach(ele => {
let [type , term] = ele.split(" ")
map.set(type,+term)
})
privacies.forEach( (ele,i) => {
let [time, type] = ele.split(" ")
let [year,month,day] = time.split(".")
month = map.get(type) + Number(month)
while(month > 12) {
if (month > 12) {
month = month - 12
year = +year + 1
}
}
if( year < today[0] ) return answer.push(i+1)
if( year == today[0] && month < today[1] ) return answer.push(i+1)
if( year == today[0] && month == today[1] && day <= today[2]) return answer.push(i+1)
})
return answer
}
설명은 다음과 같습니다.
function solution(today, terms, privacies) {
let map = new Map()
let answer = []
// map과 정답 저장할 배열과
today = today.split(".")
// 오늘 날짜를 split해서 재할당해줍니다.
terms.forEach(ele => {
let [type , term] = ele.split(" ")
map.set(type,+term)
})
// 구조분해할당을 해줍니다.
// map에 약관을 키값으로 약관의 유효기간을 밸류값으로 담아줍니다.
privacies.forEach( (ele,i) => {
let [time, type] = ele.split(" ")
let [year,month,day] = time.split(".")
// privacies를 순회하면서 먼저 날짜와 약관타입을 split해서 구조분해할당합니다.
// 날짜를 다시 년도 월 일 순으로 split해서 구조분해할당합니다.
month = map.get(type) + Number(month)
// month에 약관 기간과 현재 날짜를 더한 값을 재할당합니다.
while(month > 12) {
if (month > 12) {
month = month - 12
year = +year + 1
}
//while 문을 통해 month가 13보다 작아질때까지 빼주면서
//뺄때마다 연도를 1 증가시켜줍니다.
}
if( year < today[0] ) return answer.push(i+1)
if( year == today[0] && month < today[1] ) return answer.push(i+1)
if( year == today[0] && month == today[1] && day <= today[2]) return answer.push(i+1)
// 년도부터 차례대로 비교하면서 약관이 지난 경우를 체크합니다.
// if에 걸리지 않으면 다음으로 지나가고 걸리게되면 i+1값을 push합니다.
})
return answer
}
반응형
'programmers' 카테고리의 다른 글
[Programmers Level 3] 야근지수 Javascript (0) | 2023.01.12 |
---|---|
[Programmers Level 2] 스킬트리 Javascript (0) | 2023.01.11 |
[Programmers Level 2] 주차 요금 계산 Javascript (0) | 2023.01.11 |
[Programmers Level 2] 할인 행사 Javascript (0) | 2023.01.11 |
[Programmers Level 2] 괄호 회전하기 Javascript (0) | 2023.01.11 |
⚡문제정보


아주아주 긴 문제이지만 조건은 나름 간단합니다.
오늘날짜와 약관의 타입과 유효기간이 담긴 배열 , 약관이 지났는지 안지났는지 확인해야하는 배열
세개가 주어지고 이중 오늘을 기준으로 약관이 지난 케이스들의 index +1 값을 담아서 반환하면 되는 문제입니다.
구조분해할당을 써보기 좋은 문제 같네요
🔍나의 풀이
function solution(today, terms, privacies) {
let map = new Map()
let answer = []
today = today.split(".")
terms.forEach(ele => {
let [type , term] = ele.split(" ")
map.set(type,+term)
})
privacies.forEach( (ele,i) => {
let [time, type] = ele.split(" ")
let [year,month,day] = time.split(".")
month = map.get(type) + Number(month)
while(month > 12) {
if (month > 12) {
month = month - 12
year = +year + 1
}
}
if( year < today[0] ) return answer.push(i+1)
if( year == today[0] && month < today[1] ) return answer.push(i+1)
if( year == today[0] && month == today[1] && day <= today[2]) return answer.push(i+1)
})
return answer
}
설명은 다음과 같습니다.
function solution(today, terms, privacies) {
let map = new Map()
let answer = []
// map과 정답 저장할 배열과
today = today.split(".")
// 오늘 날짜를 split해서 재할당해줍니다.
terms.forEach(ele => {
let [type , term] = ele.split(" ")
map.set(type,+term)
})
// 구조분해할당을 해줍니다.
// map에 약관을 키값으로 약관의 유효기간을 밸류값으로 담아줍니다.
privacies.forEach( (ele,i) => {
let [time, type] = ele.split(" ")
let [year,month,day] = time.split(".")
// privacies를 순회하면서 먼저 날짜와 약관타입을 split해서 구조분해할당합니다.
// 날짜를 다시 년도 월 일 순으로 split해서 구조분해할당합니다.
month = map.get(type) + Number(month)
// month에 약관 기간과 현재 날짜를 더한 값을 재할당합니다.
while(month > 12) {
if (month > 12) {
month = month - 12
year = +year + 1
}
//while 문을 통해 month가 13보다 작아질때까지 빼주면서
//뺄때마다 연도를 1 증가시켜줍니다.
}
if( year < today[0] ) return answer.push(i+1)
if( year == today[0] && month < today[1] ) return answer.push(i+1)
if( year == today[0] && month == today[1] && day <= today[2]) return answer.push(i+1)
// 년도부터 차례대로 비교하면서 약관이 지난 경우를 체크합니다.
// if에 걸리지 않으면 다음으로 지나가고 걸리게되면 i+1값을 push합니다.
})
return answer
}
반응형
'programmers' 카테고리의 다른 글
[Programmers Level 3] 야근지수 Javascript (0) | 2023.01.12 |
---|---|
[Programmers Level 2] 스킬트리 Javascript (0) | 2023.01.11 |
[Programmers Level 2] 주차 요금 계산 Javascript (0) | 2023.01.11 |
[Programmers Level 2] 할인 행사 Javascript (0) | 2023.01.11 |
[Programmers Level 2] 괄호 회전하기 Javascript (0) | 2023.01.11 |