Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    1154 - Day of the Year\.

    Easy

    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

    Constraints:

    • date.length == 10

    • date[4] == date[7] == '-', and all other date[i]'s are digits

    • date represents a calendar date between Jan 1<sup>st</sup>, 1900 and Dec 31<sup>th</sup>, 2019.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Integer dayOfYear(String date)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait