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

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

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, and you may not use the same element twice.

Example:

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

这应该是leetcode里最简单的题,简单的循环。


 

以下是我的代码:

class Solution {public:    vector
twoSum(vector
& nums, int target) { vector
re; for (int i = 0; i < nums.size() - 1; i++) { for (int j = nums.size() - 1; j > i; j--) { if (nums[i] + nums[j] == target) { re.push_back(i); re.push_back(j); return re; } } } return re; }};

 

转载于:https://www.cnblogs.com/zmj97/p/7526507.html

你可能感兴趣的文章
JavaScript基础(四)关于对象及JSON
查看>>
关于js sort排序方法
查看>>
JAVA面试常见问题之Redis篇
查看>>
javascript:二叉搜索树 实现
查看>>
网络爬虫Heritrix源码分析(一) 包介绍
查看>>
__int128的实现
查看>>
Problem - 1118B - Codeforces(Tanya and Candies)
查看>>
jdk1.8 api 下载
查看>>
svn 图标不显示
查看>>
getElement的几中属性介绍
查看>>
iOS 使用Quartz 2D画虚线 【转】
查看>>
平面最接近点对
查看>>
HTML列表,表格与媒体元素
查看>>
PHP、Java、Python、C、C++ 这几种编程语言都各有什么特点或优点?
查看>>
感谢青春
查看>>
Jquery Uploadify4.2 falsh 实现上传
查看>>
雨林木风 GHOST_XP SP3 快速装机版YN12.08
查看>>
linux基础-命令
查看>>
java对象的深浅克隆
查看>>
Hadoop流程---从tpch到hive
查看>>