Nannew

Results 3 comments of Nannew

same error with "-m 1500" or "-m 1000"

解法三 只用了一个bool 没必要用int ```cpp class Solution { public: string longestPalindrome(string s) { if (s.empty()) { return ""; } int n = s.size(), left = 0, len = 1; bool dp[n][n];...