Merge branch 'youngyangyang04:master' into master

This commit is contained in:
XuBoLun 2021-08-24 22:43:52 +08:00 committed by GitHub
commit 7ccb72923d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -48,7 +48,7 @@
## C++代码
```
```c++
class Solution {
private:
vector<vector<int>> result;
@ -80,11 +80,10 @@ public:
return result;
}
};
```
使用set去重的版本。
```
```c++
class Solution {
private:
vector<vector<int>> result;
@ -113,7 +112,6 @@ public:
return result;
}
};
```
## 补充
@ -151,7 +149,6 @@ public:
return result;
}
};
```
## 总结