題目描述
給定一個整數陣列和一個目標值,找出陣列中和為目標值的兩個數。
你可以假設每個輸入只對應一種答案,且同樣的元素不能被重複利用。
給定 nums = [2, 7, 11, 15], target = 9
因為 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1]
2數求和分析
最簡單無腦的方式就是一個外迴圈一個內迴圈2個值分別相加等於target即可
public static int[] TowSum(int[] nums, int target)
{
int[] result = null;
for (int i = 0; i <= nums.Length - 1; i++)
{
for (int j = i + 1; j <= nums.Length - 1; j++)
{
if (nums[i] + nums[j] == target)
{
return result = new int[] {i, j};
}
}
}
if (result == null)
{
result = new int[] { };
}
return result;
}
複製程式碼