Easy
Given an array of meeting time intervals where intervals[i] = [start, end], return true if a person could attend all meetings (no two overlap).
Input: intervals = [[0,30],[5,10],[15,20]] Output: false
Input: intervals = [[7,10],[2,4]] Output: true