Merge branch 'youngyangyang04:master' into master

This commit is contained in:
XuBoLun
2021-08-24 22:43:52 +08:00
committed by GitHub

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;
}
};
```
## 总结