/* (C) 2024 YourCompanyName */ package array; import java.util.*; import java.util.stream.Collectors; /** * Created by gouthamvidyapradhan on 30/07/2019 Given a list of 24-hour clock time points in * "Hour:Minutes" format, find the minimum minutes difference between any two time points in the * list. Example 1: Input: ["23:59","00:00"] Output: 1 Note: The number of time points in the given * list is at least 2 and won't exceed 20000. The input time is legal and ranges from 00:00 to * 23:59. * *
Solution: O(N log N) convert each time value of the form hh:mm to minutes and sort the array.
* For every pair (i, j) where j = i + 1 (also for the case where i = 0 and j = N - 1) check the
* minute difference and return the minimum time difference as the answer.
*/
public class MinimumTimeDifference {
public static void main(String[] args) {
List