給定一個整數數組 nums 和一個目標值 target,請你在該數組中找出和爲目標值的那 兩個 整數,並返回他們的數組下標。數組
你能夠假設每種輸入只會對應一個答案。可是,你不能重複利用這個數組中一樣的元素。
題解:這個題目直接用暴力遍歷就能夠,代碼以下:spa
1 class Solution { 2 public int[] twoSum(int[] nums, int target) { 3 int[] res = new int[2]; 4 for(int i =0 ; i<nums.length;i++){ 5 for(int j = i+1;j<nums.length;j++){ 6 if(nums[i]+nums[j]==target){ 7 res[0]=i; 8 res[1]=j; 9 } 10 } 11 } 12 return res; 13 } 14 }