给出一组区间,请合并所有重叠的区间。例如,给出[1,3],[2,6],[8,10],[15,18],返回[1,6],[8,10],[15,18]. 写的不好看,但很intuitive 23333 class Interval: def __init__(self, a=0, b=0): self.start = a self.end = b # # # @param intervals Interval类一维数组 # @return Interval类一维数组 # class Solution: def merge(self , int...