문제
풀이
#include <string>
#include <vector>
using namespace std;
string solution(int a, int b) {
vector<int> month = { 31,29,31,30,31,30,31,31,30,31,30,31 };
vector<string> week = { "THU","FRI","SAT","SUN","MON","TUE","WED" };
int num = b;
for (int i = 0; i < a - 1; i++) num += month[i];
return week[num % 7];
}
'Algorithm > Programers - C++' 카테고리의 다른 글
[프로그래머스] 부족한 금액 계산하기 (0) | 2022.02.07 |
---|---|
[프로그래머스]최소직사각형 (0) | 2022.02.05 |
[프로그래머스]두 개 뽑아서 더하기 (0) | 2022.02.03 |
[프로그래머스]약수의 개수와 덧셈 (0) | 2022.02.03 |
[프로그래머스]3진법 뒤집기 (0) | 2022.02.02 |