#ifndef S0131_PALINDROME_PARTITIONING_HPP #define S0131_PALINDROME_PARTITIONING_HPP #include #include using namespace std; class S0131 { public: vector> partition(string s); }; #endif