-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.cpp
More file actions
57 lines (47 loc) · 1.06 KB
/
1.cpp
File metadata and controls
57 lines (47 loc) · 1.06 KB
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
56
57
/*
1. Two Sum
Given an array of integers nums and an integer target,
return indices of the two numbers such that they add up to target.
You may assume that each input would have exactly one solution,
and you may not use the same element twice.
You can return the answer in any order.
*/
#include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
vector<int> twoSum(vector<int>& nums, int target) {
unordered_map<int, int> dic;
for (int i = 0; i < nums.size(); ++i) {
if (dic.count(target - nums[i])) {
return {dic[target-nums[i]], i};
} else {
dic[nums[i]] = i;
}
}
return {};
}
void test() {
vector<int> nums;
int target;
nums = {2,7,11,15};
target = 9;
vector<int> ret;
ret = twoSum(nums, target);
for (int num : ret) {
cout << num << " ";
}
cout << endl;
nums = {3,2,4};
target = 6;
ret = twoSum(nums, target);
for (int num : ret) {
cout << num << " ";
}
cout << endl;
}
int main()
{
test();
return 0;
}