Given an array of meeting time intervals where intervals[i] = [startᵢ, endᵢ], determine whether a single person could attend every meeting — that is, return true if no two meetings overlap and false otherwise.
A meeting that ends exactly when another begins (e.g. [0,30] then [30,60]) does not conflict.
[[0,30],[5,10],[15,20]][[7,10],[2,4]][[0,30],[30,60]][][[5,8]][[1,5],[5,10],[10,15],[4,6]]