출처: 프로그래머스 코딩 테스트 연습
https://school.programmers.co.kr/learn/courses/30/lessons/12901
나의 풀이
using System;
public class Solution {
public string solution(int a, int b) {
string[] strArray = new string[7]{"SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"};
DateTime time = new DateTime(2016, a, b);
int index = (int)time.DayOfWeek;
return strArray[index];
}
}
다른사람풀이
using System;
public class Solution {
public string solution(int a, int b) {
string answer = "";
DateTime dt = new DateTime(2016,a,b);
answer = dt.ToString("ddd").ToUpper();
return answer;
}
}
DateTime 사용자 서식문자열을 활용함.
https://learn.microsoft.com/ko-kr/dotnet/standard/base-types/custom-date-and-time-format-strings
'🛡️ 코딩테스트 > 🛡️ 코테 : 프로그래머스' 카테고리의 다른 글
C# 신고 결과 받기 - 프로그래머스 [Lv.1] (0) | 2023.01.27 |
---|---|
C# 소수 만들기 - 프로그래머스 [Lv.1] (0) | 2023.01.26 |
C# 3진법 뒤집기 - 프로그래머스 [Lv.1] (0) | 2023.01.22 |
C# 핸드폰 번호 가리기 - 프로그래머스 [Lv.1] (0) | 2023.01.11 |
C# 암호 해독 - 프로그래머스 [Lv.0] 코딩 테스트 입문 (0) | 2022.12.24 |