摘要: Notes: Edge cases: 1. It does not follow while(it.hasNext()) it.next(). So we need add has next check in next() 2. If index is out of boundary, which 阅读全文
posted @ 2017-09-12 15:32 keepshuatishuati 阅读(115) 评论(0) 推荐(0) 编辑
摘要: class Solution { class Interval { public int start; public int end; public Interval(int x, int y) { start = x; end = y; } } public ... 阅读全文
posted @ 2017-09-12 15:06 keepshuatishuati 阅读(130) 评论(0) 推荐(0) 编辑