Problem Description
Given a string date
representing a Gregorian calendar date formatted as YYYY-MM-DD
, return the day number of the year.
Key Insights
- The problem requires calculating the day of the year based on a given date.
- The Gregorian calendar has different days in February depending on whether it's a leap year.
- The problem can be solved by summing the days of the months leading up to the given date.
Space and Time Complexity
Time Complexity: O(1)
Space Complexity: O(1)
Solution
To solve the problem, we will:
- Extract the year, month, and day from the input date string.
- Create an array that stores the number of days in each month for a non-leap year.
- Check if the year is a leap year and adjust the days in February accordingly.
- Sum the days of the months preceding the given month and add the current day to get the day number of the year.