2016年6月13日

Insert Interval

摘要: 1、 2、Merge Intervals 阅读全文

posted @ 2016-06-13 12:29 RenewDo 阅读(270) 评论(0) 推荐(0) 编辑

Integer Break

摘要: 1 class Solution { 2 public: 3 int integerBreak(int n) { 4 vector res(n+1,0); 5 res[1]=1; 6 res[2]=1; 7 for(int i=3; i<=n; i++) 8 { 9 ... 阅读全文

posted @ 2016-06-13 10:08 RenewDo 阅读(185) 评论(0) 推荐(0) 编辑

导航