1. Two Sum
Posted bloomingFlower
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1. Two Sum相关的知识,希望对你有一定的参考价值。
我的做法 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;
}
}
————————————————————————————————————————————————————————————
以上是关于1. Two Sum的主要内容,如果未能解决你的问题,请参考以下文章