leetcode/include/s0131_palindrome_partitioni...

15 lines
224 B
C++

#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