VVL1295

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

随笔分类 -  LeetCode

摘要:public class TwoSum_1 { public int[] twoSum(int[] nums, int target) { //二分法(暂时最快) int[] copy = Arrays.copyOf(nums, nums.length); int[] values = new int[2]; int[] i... 阅读全文
posted @ 2016-04-14 09:59 bobo2018