mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 07:34:06 +00:00
8 lines
147 B
C++
8 lines
147 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
string longestPalindrome(string s);
|
|
bool test(string s, string answer);
|
|
}; |