TheRealSamuel/LeetCodeProblem
0564
1{2 "id": 2748,3 "name": "calculate_delayed_arrival_time",4 "difficulty": "Easy",5 "link": "https://leetcode.com/problems/calculate-delayed-arrival-time/",6 "date": "1681603200000",7 "task_description": "You are given a positive integer `arrivalTime` denoting the arrival time of a train in hours, and another positive integer `delayedTime` denoting the amount of delay in hours. Return _the time when the train will arrive at the station._ Note that the time in this problem is in 24-hours format. **Example 1:** ``` **Input:** arrivalTime = 15, delayedTime = 5 **Output:** 20 **Explanation:** 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). ``` **Example 2:** ``` **Input:** arrivalTime = 13, delayedTime = 11 **Output:** 0 **Explanation:** 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). ``` **Constraints:** `1 <= arrivaltime < 24` `1 <= delayedTime <= 24`",8 "public_test_cases": [9 {10 "label": "Example 1",11 "input": "arrivalTime = 15, delayedTime = 5",12 "output": "20 "13 },14 {15 "label": "Example 2",16 "input": "arrivalTime = 13, delayedTime = 11",17 "output": "0 "18 }19 ],20 "private_test_cases": [21 {22 "input": [23 18,24 1925 ],26 "output": 1327 },28 {29 "input": [30 10,31 1232 ],33 "output": 2234 },35 {36 "input": [37 9,38 2339 ],40 "output": 841 },42 {43 "input": [44 6,45 346 ],47 "output": 948 },49 {50 "input": [51 3,52 2153 ],54 "output": 055 },56 {57 "input": [58 5,59 1360 ],61 "output": 1862 },63 {64 "input": [65 11,66 167 ],68 "output": 1269 },70 {71 "input": [72 13,73 1174 ],75 "output": 076 },77 {78 "input": [79 5,80 281 ],82 "output": 783 },84 {85 "input": [86 12,87 588 ],89 "output": 1790 }91 ],92 "haskell_template": "findDelayedArrivalTime :: Int -> Int -> Int\nfindDelayedArrivalTime arrivalTime delayedTime ",93 "ocaml_template": "let findDelayedArrivalTime (arrivalTime: int) (delayedTime: int) : int = ",94 "scala_template": "def findDelayedArrivalTime(arrivalTime: Int,delayedTime: Int): Int = { \n \n}",95 "java_template": "public static int findDelayedArrivalTime(int arrivalTime, int delayedTime) {\n\n}",96 "python_template": "class Solution(object):\n def findDelayedArrivalTime(self, arrivalTime, delayedTime):\n \"\"\"\n :type arrivalTime: int\n :type delayedTime: int\n :rtype: int\n \"\"\"\n "97}