s0131
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-02-02 17:34:34 +08:00
parent a145bbc05f
commit 19212e880b
5 changed files with 97 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
#ifndef S0131_PALINDROME_PARTITIONING_HPP
#define S0131_PALINDROME_PARTITIONING_HPP
#include <string>
#include <vector>
using namespace std;
class S0131 {
public:
vector<vector<string>> partition(string s);
};
#endif