java.lang.Object
g2601_2700.s2651_calculate_delayed_arrival_time.Solution

public class Solution extends Object
2651 - Calculate Delayed Arrival Time.<p>Easy</p> <p>You are given a positive integer <code>arrivalTime</code> denoting the arrival time of a train in hours, and another positive integer <code>delayedTime</code> denoting the amount of delay in hours.</p> <p>Return <em>the time when the train will arrive at the station.</em></p> <p>Note that the time in this problem is in 24-hours format.</p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> arrivalTime = 15, delayedTime = 5</p> <p><strong>Output:</strong> 20</p> <p><strong>Explanation:</strong> Arrival time of the train was 15:00 hours. It is delayed by 5 hours. Now it will reach at 15+5 = 20 (20:00 hours).</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> arrivalTime = 13, delayedTime = 11</p> <p><strong>Output:</strong> 0</p> <p><strong>Explanation:</strong> Arrival time of the train was 13:00 hours. It is delayed by 11 hours. Now it will reach at 13+11=24 (Which is denoted by 00:00 in 24 hours format so return 0).</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= arrivaltime < 24</code></li> <li><code>1 <= delayedTime <= 24</code></li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • findDelayedArrivalTime

      public int findDelayedArrivalTime(int ar, int de)