-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwo_sum_leetcode.cpp
55 lines (49 loc) · 894 Bytes
/
two_sum_leetcode.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <bits/stdc++.h>
using namespace std;
vector<int> two_sum(vector<int> arr, int target)
{
vector<int> ans;
int n = arr.size();
int i = 0, j = 0;
int sum = 0 ;
while (j < n)
{
if (sum < target)
{
sum = sum + arr[j];
j++;
}
else if (sum == target)
{
break;
}
if (sum > target)
{
while (sum > target)
{
sum = sum - arr[i];
i++;
}
if (sum == target)
{
break;
}
}
}
for (i ; i < j; i++)
{
ans.push_back(i);
}
return ans;
}
int main()
{
vector<int> arr = {3,3};
int target = 6;
vector<int> ans = two_sum(arr, target);
for (auto x : ans)
{
cout << x << " ";
}
return 0;
}