We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原题链接: https://leetcode-cn.com/problems/two-sum/
解题思路:
/** * @param {number[]} nums * @param {number} target * @return {number[]} */ var twoSum = function (nums, target) { // 用Map保存已遍历的index结果 let map = new Map(); for (let index = 0; index < nums.length; index++) { // 判断当前值是否已在Map中存储,如果有就表示找到了两个数可以想加等于target if (typeof map.get(nums[index]) === 'number') { // 返回已保存的index和当前值的index return [map.get(nums[index]), index]; } // 将当前值与target的差,以及当前值的index保持在Map // 当遍历到target - nums[index],就表示找到了两数之和为target,可以直接把当前的index取出 map.set(target - nums[index], index); } };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接:
https://leetcode-cn.com/problems/two-sum/
解题思路:
The text was updated successfully, but these errors were encountered: