小小程序媛  
得之坦然,失之淡然,顺其自然,争其必然

2015年9月14日

摘要: 题目Validate if a given string is numeric.Some examples: “0” => true ” 0.1 ” => true “abc” => false “1 a” => false “2e10” => true Note: It is i... 阅读全文
posted @ 2015-09-14 19:51 Coding菌 阅读(381) 评论(0) 推荐(0) 编辑
 
摘要: 题目Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals w... 阅读全文
posted @ 2015-09-14 19:24 Coding菌 阅读(129) 评论(0) 推荐(0) 编辑
 
摘要: 题目Given 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-09-14 19:13 Coding菌 阅读(108) 评论(0) 推荐(0) 编辑