252-meeting-rooms
Easy
Input: intervals = [(0,30),(5,10),(15,20)]
Output: false
Explanation:
(0,30), (5,10) and (0,30),(15,20) will conflictInput: intervals = [(5,8),(9,15)]
Output: true
Explanation:
Two times will not conflict Last updated
Input: intervals = [(0,30),(5,10),(15,20)]
Output: false
Explanation:
(0,30), (5,10) and (0,30),(15,20) will conflictInput: intervals = [(5,8),(9,15)]
Output: true
Explanation:
Two times will not conflict Last updated