Day 1 两数之和

两数之和

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.

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

暴力法(使用语言:C++)

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

在这里插入图片描述
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

发布了23 篇原创文章 · 获赞 0 · 访问量 234

猜你喜欢

转载自blog.csdn.net/Lester18/article/details/104598235