Company: Atlassian_31july
Difficulty: medium
Earliest Meeting Time Problem Description Implement a simple meeting assistant. Given a list of events representing when people are busy and the earliest time in the day when all mentioned people are available for a meeting of a specific duration. Events are provided as strings in the format: <person name> <event name> <start time> <end time> , where start and end times are in "HH:MM" format. If no suitable time exists, return "-1". Function Description Complete the function getEarliestMeetTime in the editor with the following parameters: string events[n] : event descriptors int k : meeting duration (in minutes) Returns string : the earliest time for the meeting or "-1" if it is not possible Examples Example 1: Input: events = ["Alex sleep 00:00 08:00", "Sam sleep 07:00 18:00", "Alex lunch 12:30 13:59"], k = 60 Output: 14:00 Explanation: Alex is not available until 8:00 Sam is not available until 13:00 Alex is busy again until 13:59 The earliest time when both a