计算两数之和(Java和JavaScript)
程序员文章站
2022-06-16 11:33:29
1. 两数之和难度:简单给定一个整数数组 nums和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。示例:给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1]题目来源:力扣(LeetCode)链接:https://leetcode-cn.com/prob......
难度:简单
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
示例:
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
题目来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum
Java解法:
class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer,Integer> hashmap=new HashMap<>(nums.length-1);
hashmap.put(nums[0],0);
for(int i=1;i<nums.length;i++){
int another=target-nums[i];
if(hashmap.containsKey(another)){
return new int[]{hashmap.get(another),i};
}else{
hashmap.put(nums[i],i);
}
}
throw new IllegalArgumentException("No two sum solution");
}
}
JavaScript解法:
/**
* @param {number[]} nums
* @param {number} target
* @return {number[]}
*/
var twoSum = function(nums, target) {
var numstore={};
numstore[nums[0]]=0;
// console.log(numstore);{ '2': 0 }
for(var i=1;i<nums.length;i++){
var another=target-nums[i];
if(numstore[another]!==undefined){
return [numstore[another],i];
}else{
numstore[nums[i]]=i;
}
}
};
思路:
1.创建一个map
2.用for循环遍历nums数组
3.算出another值(用target减去nums[i])
4.检查map里有没有这个数
本文地址:https://blog.csdn.net/m0_37483148/article/details/111129201
下一篇: BFC的原理以及运用
推荐阅读
-
java计算两个日期之前的天数实例(排除节假日和周末)
-
java计算两个日期之前的天数实例(排除节假日和周末)
-
【JAVA】Leetcode1. 两数之和哈希表题解复杂度O(n)
-
Leetcode1:两数之和【Java实现】
-
Java实现算法“两数之和”
-
两数之和:给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。...
-
c语言和Java语言实现,两数之和:给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
-
leetcode:求两数之和,给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
-
LeetCode1.两数之和:给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,返回数组下标。假设每种输入只对应一个答案。但数组中同一个元素不能使用两遍
-
Leecode刷题记录(JavaScript版):1.两数之和