Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution.
Example:
Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].
public int[] TwoSum(int[] nums, int target) { #region solution 1 ,暴力破解法 int[] newInt =null; for (int i = 0; i < nums.Length ; i++) { for (int j = i + 1; j < nums.Length ; j++) { if (nums[i]+nums[j]==target) { newInt = new int[] { i, j }; } } } return newInt; #endregion #region solution 2 ,dictionary<key,value> int[] arr = new int[2]; Dictionary<int, int> dict = new Dictionary<int, int>(); for (int i = 0; i < nums.Length; i++) { int cha = target - nums[i]; if (dict.ContainsKey(cha)) { arr[0] = dict[cha]; arr[1] = i; break; } else { dict.Add(nums[i], i); } } return arr; #endregion }
OJ上的解法:https://leetcode.com/articles/two-sum/
第一個leetcode,考察的是HashTable,C#中是Dictionary<key,value>