摘要: 我的做法 time : O(N2) public class Solution { public int[] twoSum(int[] nums, int target) { int[] result = new int[2]; int i = 0, j = 0; for (; i < nums.l 阅读全文
posted @ 2017-04-28 14:49 bloomingFlower 阅读(104) 评论(0) 推荐(0) 编辑