leetcode 1 两数之和

Posted 行尸走肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 1 两数之和相关的知识,希望对你有一定的参考价值。

        int [] two_num(int [] nums,int target){
            HashMap<Integer, Integer> num_indx = new HashMap<Integer, Integer>();
            int [] ans = new int [2];
            for(int i=0;i<nums.length;i++){
                int another = target - nums[i];
                if(num_indx.containsKey(another)){
                    ans[0] = i;
                    ans[1] = num_indx.get(another);
                    return ans;
                }
                num_indx.put(nums[i],i);
            }
            return ans;
        }

https://leetcode-cn.com/problems/two-sum/

这个要注意读题,明确说明是两数之和。。

 

以上是关于leetcode 1 两数之和的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 1两数之和

LeetCode——1.两数之和

LeetCode第5天 - 283. 移动零 | 167. 两数之和 II - 输入有序数组

LeetCode 两数之和 twoSum

LeetCode:两数之和

leetcode_01两数之和