Skip to content

Commit c746533

Browse files
committedAug 25, 2022
one pass hasmap sol for twosum
1 parent b186f6c commit c746533

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode/

‎Easy/1-twosum.cpp

+16-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
#include <vector>
2-
#include <algorithm>
2+
#include <map>
33

44
using namespace std;
55

66
class Solution {
77
public:
88
vector<int> twoSum(vector<int>& nums, int target) {
9-
vector<int> ls;
10-
for (int i = 0; i <= nums.size(); i++) {
11-
for (int j = 0; j < i; j++) {
12-
if (nums[j] == target - nums[i]) {
13-
ls = {i, j};
14-
return ls;
15-
}
16-
}
17-
}
18-
return ls;
19-
}
9+
map<int, int> indices;
10+
11+
for (int i = 0; i < nums.size(); i++) {
12+
// map<int, int>::iterator it = indices.find(target - nums[i]);
13+
14+
// if (it != indices.end()) {
15+
if (indices.count(target - nums[i])) {
16+
return {i, indices[target - nums[i]]};
17+
};
18+
19+
indices[nums[i]] = i;
20+
};
21+
22+
return {-1, -1};
23+
};
2024
};

0 commit comments

Comments
 (0)
Please sign in to comment.