給定一個整數數組和一個目標值,找出數組中和爲目標值的兩個數。數組
你能夠假設每一個輸入只對應一種答案,且一樣的元素不能被重複利用。spa
示例:code
給定 nums = [2, 7, 11, 15], target = 9 由於 nums[0] + nums[1] = 2 + 7 = 9 因此返回 [0, 1]
leetcode 原題第一題,主要採用C#寫,小白進階,暴力法解決~~~blog
public class Solution { public int[] TwoSum(int[] nums, int target) { for(int i = 0;i<nums.Length;i++){ for(int j= i+1;j<nums.Length;j++){ if(nums[i]+nums[j]==target){ return new int[]{i,j}; } } } throw new Exception("沒有兩個數相加和等於指望值!"); } }