lichao_normal

导航

2017年1月4日 #

Combination Sum II

摘要: public class Solution { public List<List<Integer>> combinationSum2(int[] candidates, int target) { List<List<Integer>> res=new ArrayList<List<Integer> 阅读全文

posted @ 2017-01-04 21:45 lichao_normal 阅读(70) 评论(0) 推荐(0) 编辑

Combination Sum

摘要: Given a set of candidate numbers (C) (without duplicates) and a target number (T), find all unique combinations in C where the candidate numbers sums 阅读全文

posted @ 2017-01-04 20:37 lichao_normal 阅读(105) 评论(0) 推荐(0) 编辑