摘要: Given a target value and a list of numbers to pick from, pick numbers from the list such that thenumbers picked add up to the target value.package careercup;import java.util.ArrayList; import java.util.Arrays; import java.util.LinkedList; import java.util.List;public class test1 { private int target 阅读全文
posted @ 2013-02-07 07:19 西施豆腐渣 阅读(178) 评论(0) 推荐(0) 编辑