-
[Lv. 1] 2016년
class Solution { public String solution(int a, int b) { String answer = ""; String[] day = {"FRI", "SAT", "SUN", "MON", "TUE", "WED", "THU"}; int[] date = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; int select = 0; for(int i = 0; i < a-1; i++){ select += date[i]; } select += b-1; answer = day[select % 7]; return answer; } } 1. 요일을 나타내는 문자열 배열 day 생성 (시작일이 금요일이라고 명시되었기 떄문에 금요일부터 시작) 2. 각 월..
Algorithm/프로그래머스
2023. 10. 2.