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
- Algorithm
- 오브젝트 풀링
- 충돌위험 찾기
- 유니티
- 미로 탈출 명령어
- 백준 c++ 9375번
- Lv2
- 9375번
- 플레이어 이동
- CSharp #자료구조
- 양과 늑대
- pccp 기출문제 1번
- 2D슈팅게임
- pccp 기출문제 2번
- Lv.3
- 연속 펄스 부분 수열의 합
- heap tree
- Hp바
- pccp 기출문제 3번
- Back Tracking
- Blend Type
- Ainimation Blending
- dp 알고리즘
- 플레이어 방향전환
- Animation State Machine
- 프로그래머스
- Unity
- LayerMark
- dfs
- C#
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.1 개인정보 수집 유효기간 본문
https://school.programmers.co.kr/learn/courses/30/lessons/150370
1. 정답코드 및 핵심 아이디어, 유의사항
주어진 조건에 따라 파기해야 하는 데이터의 번호를 찾는 문제
1) 파기해야하는 날짜는 약관의 종류에 따라 정해짐
- 딕셔너리를 활용하고 날짜 데이터 클래스에 유효 기간을 더하는 메서드 선언함
2) 각각에 대한 현재날짜와 파기날짜를 비교해 파기해야 하는 데이터인지 판단
- 각 날짜 데이터에 대해서 파기해야 하는 데이터인지 판단하는 메서드를 선언함
주석 참조
using System;
using System.Collections.Generic;
public class Solution
{
// 날짜에 대한 데이터
public class DataClass
{
public int year;
public int month;
public int date;
// xxxx.xx.xx 꼴로 날짜를 넘겨받음
public DataClass(string days)
{
string[] strs = days.Split('.');
year = int.Parse(strs[0]);
month = int.Parse(strs[1]);
date = int.Parse(strs[2]);
}
// 날짜에 유효기간을 더하는 메서드
public void AddMonth(int addMonth)
{
month += addMonth;
while (month > 12)
{
month -= 12;
year += 1;
}
}
}
public int[] solution(string today, string[] terms, string[] privacies)
{
var answerList = new List<int>();
var dict = new Dictionary<char, int>(); // <약관 종류, 유효 기간>
DataClass todays = new DataClass(today); // 오늘 날짜에 대한 데이터
// 약관 종류에 따라 사전 세팅
foreach (string str in terms)
{
string[] strs = str.Split(' ');
dict.Add(strs[0][0], int.Parse(strs[1]));
}
for (int i = 0; i < privacies.Length; i++)
{
string[] strs = privacies[i].Split(' ');
// 파기해야 하는 날짜 파악
DataClass dataClass = new DataClass(strs[0]);
dataClass.AddMonth(dict[strs[1][0]]);
// 만약 파기해야 하는 데이터라면 번호 기록
if (Function(todays, dataClass))
answerList.Add(i + 1);
}
return answerList.ToArray();
}
// 파기해야하는 날짜가 지났는지 판단하는 메서드 (현재날짜 d1, 파기날짜 d2)
public bool Function(DataClass d1, DataClass d2)
{
if (d1.year != d2.year) return d1.year > d2.year;
if (d1.month != d2.month) return d1.month > d2.month;
return d1.date >= d2.date; // 정해진 날짜'까지' 보관이 가능함
}
}
'CodingTest > Programmers Lv.1' 카테고리의 다른 글
[프로그래머스 C++] Lv.1 완주하지 못한 선수 (0) | 2024.07.30 |
---|---|
[프로그래머스 C#] Lv.1 신고 결과 받기 (0) | 2024.02.14 |
[프로그래머스 C#] Lv.1 옹알이(2) (0) | 2024.01.15 |
[프로그래머스 C#] Lv.1 가장 많이 받은 선물 (0) | 2024.01.04 |
[프로그래머스 C#] Lv.1 바탕화면 정리 (0) | 2023.12.26 |