Array Four

(1)Two Sum 解題思路: 使用hashmap,將(目標和-當前元素值,當前元素位置)存入,當遇到(目標和-當前元素值)的值時,取出i即可。 1 public class Solution { 2 public int[] twoSum(int[] nums, int target) { 3 HashMap<Integer,Integer> map = new
相關文章
相關標籤/搜索