Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 우분투
- programmers
- 편스토랑
- gs25
- leetcode
- ubuntu
- AI 경진대회
- 더현대서울 맛집
- PYTHON
- github
- Baekjoon
- hackerrank
- 파이썬
- 데이콘
- Real or Not? NLP with Disaster Tweets
- Kaggle
- 금융문자분석경진대회
- 캐치카페
- SW Expert Academy
- 코로나19
- 맥북
- 자연어처리
- Docker
- dacon
- ChatGPT
- 프로그래머스 파이썬
- 편스토랑 우승상품
- 프로그래머스
- Git
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 2016년 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 2016년 입니다.
Solution
import datetime
def solution(a, b):
answer = ''
weekday_list = ["MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"]
weekday_info = datetime.datetime(2016, a, b).weekday()
answer = weekday_list[weekday_info]
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 10871번 : X보다 작은 수 (Python) (0) | 2021.04.25 |
---|---|
[Programmers] 음양 더하기 (Python) (0) | 2021.04.24 |
[Programmers] 서울에서 김서방 찾기 (Python) (0) | 2021.04.20 |
[Programmers] 문자열 내림차순으로 배치하기 (Python) (0) | 2021.04.19 |
[Programmers] 정수 내림차순으로 배치하기 (Python) (0) | 2021.04.15 |
Comments