forked from spandey1296/Learn-Share-Hacktoberfest2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Two_Sum.cpp
33 lines (33 loc) ยท 857 Bytes
/
Two_Sum.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include<bits/stdc++.h>
using namespace std;
vector<int> twoSum(vector<int>& nums, int target) {
vector<int> res;
for(int i=0;i<nums.size();i++) {
for(int j=0;j<nums.size();j++) {
if((i!=j)&&(nums[i]+nums[j])==target) {
res.push_back(i);
res.push_back(j);
return res;
}
}
}
return res;
}
int main(void) {
int n;
cout<<"Enter the size of the vector: ";
cin>>n;
vector<int> nums;
for(int i=0;i<n;i++) {
int ele;
cin>>ele;
nums.emplace_back(ele);
}
int target;
cout<<"Enter the target sum: ";
cin>>target;
vector<int> res=twoSum(nums,target);
cout<<"The indices to the targeted sum are: ";
for(auto &i:res) cout<<i<<" ";
return 0;
}