leetcode/include/s0131_palindrome_partitioning.hpp
Sainnhe Park 19212e880b
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0131
2023-02-02 17:34:34 +08:00

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