-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1. Two Sum.cpp
43 lines (43 loc) · 1.46 KB
/
1. 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
34
35
36
37
38
39
40
41
42
43
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target)
{
int y;
for (int i=0;i<nums.size()-1;i++)
{
y=target-nums[i];
for (int j=i+1; j<nums.size(); j++)
{
if (nums[j]==y) return {i,j};
}
}
return {};
}
};
/*
class Solution {
public:
std::vector<int> twoSum(vector<int>& nums, int target) {
//map for finding the complement of current number in the vector
std::unordered_map<int, int> hashmap;
//loop for checking if the complement of the current integer exist in the map
for(int i = 0; i < nums.size(); i++){
//if complement has found, return current index and index of compliment
//index of complement is its value in the map
//with C++20, mappy.contains would probably been better
if(hashmap.count(target-nums[i])){
//return the index of the current integer in the vector, and the index of the complement
return {i,(hashmap[target - nums[i]])};
}
//if complement has not been passed by yet, modify the complement's value with its index
hashmap[nums[i]] = i;
}
//return empty vector if no integers answer found
return {};
}
};
*/