leetcode——给定一个整数数组和一个目标值返回两个数字对应的索引,使得这两个数字之和等于目标值

       英文题目如下:
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].

       中文翻译如下:
给定一个整数数组和一个目标值
返回两个数字对应的索引,使得这两个数字之和等于目标值

可以认为只有唯一解,同一个数字不能使用两次

输入:
nums = [2, 7, 11, 15]
target = 9

输出:
[0,1]
     

leetcode——给定一个整数数组和一个目标值返回两个数字对应的索引,使得这两个数字之和等于目标值最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/28602.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>