File tree 2 files changed +17
-12
lines changed
2 files changed +17
-12
lines changed Original file line number Diff line number Diff line change
1
+ .vscode /
Original file line number Diff line number Diff line change 1
1
#include < vector>
2
- #include < algorithm >
2
+ #include < map >
3
3
4
4
using namespace std ;
5
5
6
6
class Solution {
7
7
public:
8
8
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
+ };
20
24
};
You can’t perform that action at this time.
0 commit comments