給定一個整數數組 nums 和一個目標值 target,請你在該數組中找出和爲目標值的那 兩個 整數,並返回他們的數組下標。數組
你能夠假設每種輸入只會對應一個答案。可是,數組中同一個元素不能使用兩遍。spa
示例:code
給定 nums = [2, 7, 11, 15], target = 9blog
由於 nums[0] + nums[1] = 2 + 7 = 9
因此返回 [0, 1]get
1 class Solution { 2 public int[] twoSum(int[] nums, int target) { 3 int[] result = new int[2]; 4 for(int i=0;i<nums.length-1;i++){ 5 for(int j=i+1;j<nums.length;j++){ 6 if(target == nums[i] + nums[j]){ 7 result[0] = i; 8 result[1] = j; 9 break; 10 } 11 } 12 } 13 return result; 14 } 15 }