1154. Day of the Year
Given a string date representing a Gregorian calendar date formatted as YYYY-MM-DD, return the day number of the year.
Example 1:
Input: date = “2019-01-09”
Output: 9
Explanation: Given date is the 9th day of the year in 2019.
Example 2:
Input: date = “2019-02-10”
Output: 41
Example 3:
Input: date = “2003-03-01”
Output: 60
Example 4:
Input: date = “2004-03-01”
Output: 61
Constraints:
date.length == 10
date[4] == date[7] == ‘-’, and all other date[i]'s are digits
date represents a calendar date between Jan 1st, 1900 and Dec 31, 2019.
算法思想:直接求解
性能:4ms 8.2MB
int dayOfYear(string date) {
int mont

这篇博客主要介绍了LeetCode上的两个日期相关问题:1154. Day of the Year 和 1185. Day of the Week。对于1154题,目标是返回给定日期在当年的第几天;1185题则要求根据日期返回对应的星期。文章提供了算法思路和样例解答,并提及了蔡勒公式在解决此类问题中的应用。

2万+

被折叠的 条评论
为什么被折叠?



