我的做法 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.length; i++)
for (j = i + 1; j < nums.length; j++)
if (nums[i] + nums[j] == target) {
result[0] = i;
result[1] = j;
break;
}
return result;
}
}

————————————————————————————————————————————————————————————

posted on 2017-04-28 14:49  bloomingFlower  阅读(104)  评论(0编辑  收藏  举报