Leetcode 2446. Determine if Two Events Have Conflict
Posted on Sun 13 November 2022 in Leetcode • Tagged with interval
Question Link : https://leetcode.com/problems/determine-if-two-events-have-conflict/
Difficulty: Easy
Question
You are given two arrays of strings that represent two inclusive events that happened on the same day, event1 and event2, where:
event1 = [startTime1, endTime1] and event2 = [startTime2, endTime2].
Event times are valid 24 hours format in the form of …
Continue reading