Meeting Rooms II
Medium📝 Description
Find minimum number of rooms needed for all meetings
Input Format
List of meeting intervals [start,end]
Output Format
Minimum rooms required
Constraints
1 ≤ intervals.length ≤ 10^4
🔍 Sample Input
[[0,30],[5,10],[15,20]]
✅ Sample Output
2
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run