Class Solution

java.lang.Object
g1101_1200.s1154_day_of_the_year.Solution

public class Solution extends Object
1154 - Day of the Year.<p>Easy</p> <p>Given a string <code>date</code> representing a <a href="https://en.wikipedia.org/wiki/Gregorian_calendar" target="_top">Gregorian calendar</a> date formatted as <code>YYYY-MM-DD</code>, return <em>the day number of the year</em>.</p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> date = &ldquo;2019-01-09&rdquo;</p> <p><strong>Output:</strong> 9</p> <p><strong>Explanation:</strong> Given date is the 9th day of the year in 2019.</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> date = &ldquo;2019-02-10&rdquo;</p> <p><strong>Output:</strong> 41</p> <p><strong>Constraints:</strong></p> <ul> <li><code>date.length == 10</code></li> <li><code>date[4] == date[7] == '-'</code>, and all other <code>date[i]</code>&rsquo;s are digits</li> <li><code>date</code> represents a calendar date between Jan 1<sup>st</sup>, 1900 and Dec 31<sup>th</sup>, 2019.</li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • dayOfYear

      public int dayOfYear(String date)