[CodingTest][2022-12-05]프로그래머스 스킬 테스트 Level 1
스킬 체크 테스트 Level.1 / 문제 1 https://programmers.co.kr/skill_checks/443156?challenge_id=978 문제 from datetime import date def solution(a, b): answer = '' days = ['MON','TUE','WED','THU','FRI','SAT','SUN'] years = 2016 mydate = date(years, a, b).weekday() answer = days[mydate] # Return the day of the week as an integer, where Monday is 0 and Sunday is 6. For example, date(2002, 12, 4).weekday() == 2, ..
2022. 12. 6.