-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13November
90 lines (65 loc) · 1.92 KB
/
13November
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
3Sum Problem:
class Solution {
public:
vector<vector<int>> threeSum(vector<int>& nums) {
vector<vector<int>> ans;
int n = nums.size();
// Sort the input array
sort(nums.begin(), nums.end());
// Loop through each element
for (int i = 0; i < n; i++) {
// Skip duplicate elements
if (i > 0 && nums[i] == nums[i - 1]) {
continue;
}
// Two pointers initialization
int j = i + 1;
int k = n - 1;
// Two-pointer approach to find valid triplets
while (j < k) {
int sum = nums[i] + nums[j] + nums[k];
if (sum < 0) {
j++; // Move the left pointer to increase the sum
}
else if (sum > 0) {
k--; // Move the right pointer to decrease the sum
}
else {
// Found a triplet
ans.push_back({nums[i], nums[j], nums[k]});
j++;
k--;
while (j < k && nums[j] == nums[j - 1]) {
j++;
}
while (j < k && nums[k] == nums[k + 1]) {
k--;
}
}
}
}
return ans;
}
};
set-mismatch:
class Solution {
public:
vector<int> findErrorNums(vector<int>& nums) {
vector<int> ans;
int n = nums.size();
vector<bool> isPresent(n + 1, false);
for (int i = 0; i < n; i++) {
if (isPresent[nums[i]]) {
ans.push_back(nums[i]);
}
isPresent[nums[i]] = true;
}
for (int i = 1; i < isPresent.size(); i++) {
if (!isPresent[i]) {
ans.push_back(i);
break;
}
}
return ans;
}
};