Skip to content

Commit b7b6d29

Browse files
authored
Update 3sum.cpp
1 parent f8c5a77 commit b7b6d29

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

C++/3sum.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33

44
class Solution {
55
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-
*/
106
vector<vector<int>> threeSum(vector<int> &nums) {
117
sort(begin(nums), end(nums));
128
vector<vector<int>> result;

0 commit comments

Comments
 (0)