2015年1月21日

Combination Sum

摘要: Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num... 阅读全文

posted @ 2015-01-21 19:18 luckygxf 阅读(145) 评论(0) 推荐(0) 编辑

Pow(x, n)

摘要: Implement pow(x,n).可以直接调用api1 public class Solution {2 public double pow(double x, int n) {3 return Math.pow(x, n);4 }5 }这道题其实和Divide ... 阅读全文

posted @ 2015-01-21 15:45 luckygxf 阅读(223) 评论(0) 推荐(0) 编辑

导航