leetcode/include/s0131_palindrome_partitioni...

15 lines
224 B
C++
Raw Normal View History

2023-02-02 09:34:34 +00:00
#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