标签:target get ret targe i++ [1] twosum sum class
我的做法 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;
}
}
————————————————————————————————————————————————————————————
标签:target get ret targe i++ [1] twosum sum class
原文地址:http://www.cnblogs.com/bloomingFlower/p/6781591.html