码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-第14周双周赛-1272-删除区间

时间:2019-12-02 13:11:46      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:etc   remove   nbsp   app   自己   int   提交   image   solution   

题目描述:

技术图片

 

 自己的提交:

class Solution:
    def removeInterval(self, intervals: List[List[int]], toBeRemoved: List[int]) -> List[List[int]]:
        res = []
        for i in intervals:
            if i[0] >= toBeRemoved[1] or i[1] <= toBeRemoved[0]:
                res.append(i)
            else:
                if i[0] < toBeRemoved[0]:
                    res.append([i[0],toBeRemoved[0]])
                if i[1] > toBeRemoved[1]:
                    res.append([toBeRemoved[1],i[1]])
        return res

 

leetcode-第14周双周赛-1272-删除区间

标签:etc   remove   nbsp   app   自己   int   提交   image   solution   

原文地址:https://www.cnblogs.com/oldby/p/11969870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!