Calculate Delayed Arrival Time

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
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
LeetCode Problem - 2651
class Solution {
// Method to calculate the delayed arrival time
public int findDelayedArrivalTime(int arrivalTime, int delayedTime) {
// Calculate the total hours by adding the arrival time and delayed time
int totalHours = arrivalTime + delayedTime;
// Use modulo 24 to get the hour in a 24-hour format
int answer = totalHours % 24;
// Return the calculated arrival time
return answer;
}
}




