博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode 1. Two Sum
阅读量:5334 次
发布时间:2019-06-15

本文共 811 字,大约阅读时间需要 2 分钟。

1. Two Sum

  • Total Accepted: 259837
  • Total Submissions: 1043139
  • Difficulty: Easy

 

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution.

Example:

Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,return [0, 1].

UPDATE (2016/2/13):

The return format had been changed to zero-based indices. Please read the above updated description carefully.

 

思路:直接看代码。

 

代码:

1 class Solution { 2 public: 3     vector
twoSum(vector
& nums, int target) { 4 unordered_map
imap; 5 vector
res; 6 int i,n=nums.size(); 7 for(i=0;i

 

转载于:https://www.cnblogs.com/Deribs4/p/5685772.html

你可能感兴趣的文章
Java变量类型,实例变量 与局部变量 静态变量
查看>>
mysql操作命令梳理(4)-中文乱码问题
查看>>
Python环境搭建(安装、验证与卸载)
查看>>
一个.NET通用JSON解析/构建类的实现(c#)
查看>>
Windows Phone开发(5):室内装修 转:http://blog.csdn.net/tcjiaan/article/details/7269014
查看>>
详谈js面向对象 javascript oop,持续更新
查看>>
关于这次软件以及pda终端的培训
查看>>
jQuery上传插件Uploadify 3.2在.NET下的详细例子
查看>>
如何辨别一个程序员的水平高低?是靠发量吗?
查看>>
新手村之循环!循环!循环!
查看>>
正则表达式的用法
查看>>
线程安全问题
查看>>
SSM集成activiti6.0错误集锦(一)
查看>>
下拉刷新
查看>>
linux的子进程调用exec( )系列函数
查看>>
MSChart的研究
查看>>
C# 索引器
查看>>
MySQLdb & pymsql
查看>>
zju 2744 回文字符 hdu 1544
查看>>
delphi 内嵌汇编例子
查看>>