palindromic.cpp: In function 'void hs(std::vector<long long int>&, std::string&)':
palindromic.cpp:14:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for (int i = 1; i <= s.size(); ++i) {
| ~~^~~~~~~~~~~
palindromic.cpp: In function 'void solve()':
palindromic.cpp:30:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | while (i <= (s.size() - 1) / 2) {
| ~~^~~~~~~~~~~~~~~~~~~~~
palindromic.cpp:33:24: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for (; i + len <= s.size() / 2; ++len) {
| ~~~~~~~~^~~~~~~~~~~~~~~