美文网首页
两数之和

两数之和

作者: NingSpeals | 来源:发表于2021-03-11 16:43 被阅读0次

    给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。

    你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。

    你可以按任意顺序返回答案。

    示例 1:
    输入:nums = [2,7,11,15], target = 9
    输出:[0,1]
    解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。

    class Solution {
        func twoSum(_ nums: [Int], _ target: Int) -> [Int] {
            for i in 0...nums.count{
                for j in i+1...nums.count-1{
                    if(nums[i]+nums[j] == target){
                        return[i,j]
                    }
                }
            }
            return [0]
        }
    }
    

    相关文章

      网友评论

          本文标题:两数之和

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