Given an array of meeting time
intervals
whereintervals[i] = [starti, endi]
, determine if a person could attend all meetings.
c++
1 | class Solution { |