当前位置:网站首页>LeetCode 1. 两数之和
LeetCode 1. 两数之和
2022-07-02 13:15:00 【_刘小雨】
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
vector<int> re;
unordered_map<int, int> hash; // 记录该数出现的位置
for(int i=0; i<nums.size(); i++)
{
int other = target - nums[i];
if(hash.count(other))
{
re = vector<int>({
hash[other], i});
break;
}
hash[nums[i]] = i;
}
return re;
}
};
边栏推荐
- 数据安全产业系列沙龙(三)| 数据安全产业标准体系建设主题沙龙
- How to solve the failure of printer driver installation of computer equipment
- Yyds dry goods inventory student attendance system based on QT design
- Maui learning road (III) -- in depth discussion of winui3
- Best practices for building multi architecture images
- 潘多拉 IOT 开发板学习(RT-Thread)—— 实验2 RGB LED 实验(学习笔记)
- PCL 点云镜像变换
- The login box of unity hub becomes too narrow to log in
- sql解决连续登录问题变形-节假日过滤
- Summary of monthly report | list of major events of moonbeam in June
猜你喜欢
PyC file decompile
Typescript array out of order output
[Yu Yue education] reference materials of sensing and intelligent control technology of Nanjing University of Technology
Yyds dry goods inventory hands-on teaching you to carry out the packaging and release of mofish Library (fishing Library)
做机器视觉哪个软件好?
Sim2real environment configuration tutorial
通过两级网关设计来路由服务网格流量
曆史上的今天:支付寶推出條碼支付;分時系統之父誕生;世界上第一支電視廣告...
Text intelligent expansion and contraction control of swiftui text component (tutorial includes source code)
Another graduation season
随机推荐
PyC file decompile
PCL least median square method fitting plane
Classifier visual interpretation stylex: Google, MIT, etc. have found the key attributes that affect image classification
Text intelligent expansion and contraction control of swiftui text component (tutorial includes source code)
HMS core machine learning service helps zaful users to shop conveniently
外企高管、连续创业者、瑜伽和滑雪高手,持续迭代重构的程序人生
头条 | 亚控科技产品入选中纺联《纺织服装行业数字化转型解决方案重点推广名录》
月报总结|Moonbeam6月份大事一览
2022最新最详细必成功的在Vscode中设置背景图、同时解决不受支持的问题
AWS virtual machine expansion
Various entanglements between qvariant and Jason -- QT
Best practices for building multi architecture images
Trigger: MySQL implements adding or deleting a piece of data in one table and adding another table at the same time
What is Amazon keyword index? The consequences of not indexing are serious
[fluent] dart data type string type (string definition | string splicing | string API call)
JS learning notes - process control
PCL 最小中值平方法拟合平面
Which software is good for machine vision?
SSM integration exception handler and project exception handling scheme
台积电全球员工薪酬中位数约46万,CEO约899万;苹果上调日本的 iPhone 售价 ;Vim 9.0 发布|极客头条...