美文网首页
LeetCode 1-Two Sum

LeetCode 1-Two Sum

作者: thousand_ | 来源:发表于2018-05-15 15:58 被阅读0次

给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。

你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。

如:

给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1]

代码如下:

相关文章

  • LeetCode 1-Two Sum

    给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。 你可以假设每个输入只对应一种答案,且同样的元素不能被...

  • 1-Two Sum

    1 经典two_Sum问题 问题:给定一个整数数组nums和一个目标值target,请你在该数组中找出和为目标值的...

  • 数组

    数组题目总结 sum类型的题 leetcode 2sum leetcode 15. 3Sum思路:将3sum转化成...

  • LeetCode 1. Two Sum (Easy)

    LeetCode 1. Two Sum (Easy) LeetCode 1. Two Sum (Easy) 原题链...

  • Leetcode In Golang

    LeetCode Problems' Solutions LeetCode Problems 1. Two Sum...

  • Leetcode kSum问题

    kSum 泛指一类问题,例如 leetcode 第1题 2 Sum,leetcode 第15题 3 Sum,lee...

  • LeetCode 371 Sum of Two Integers

    LeetCode 371 Sum of Two Integers ========================...

  • LeetCode - Range Sum of BST

    Range Sum of BST - LeetCode Solution

  • 371. Sum of Two Integers

    371. Sum of Two Integers【思路】: 位运算 [leetcode] 371. Sum of ...

  • LeetCode 39. Combination Sum

    10-13 LeetCode 39. Combination Sum Combination Sum Descri...

网友评论

      本文标题:LeetCode 1-Two Sum

      本文链接:https://www.haomeiwen.com/subject/feqydftx.html