摘要: Merge IntervalsGiven a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18]... 阅读全文
posted @ 2015-04-06 16:50 neuzxy 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 解决方案在文件头插入# encoding=utf8 import sys reload(sys) sys.setdefaultencoding('utf8') 阅读全文
posted @ 2015-04-06 16:02 neuzxy 阅读(156) 评论(0) 推荐(0) 编辑