class Solution: def insert(self, intervals: List[List[int]], newInterval: List[int]) -> List[List[int]]: ans = [] i = 0 #add intervals before newInterval while i