We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c5a77 commit b7b6d29Copy full SHA for b7b6d29
C++/3sum.cpp
@@ -3,10 +3,6 @@
3
4
class Solution {
5
public:
6
- /**
7
- * @param numbers : Give an array numbers of n integer
8
- * @return : Find all unique triplets in the array which gives the sum of zero.
9
- */
10
vector<vector<int>> threeSum(vector<int> &nums) {
11
sort(begin(nums), end(nums));
12
vector<vector<int>> result;
0 commit comments