We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9bd645 commit fe28266Copy full SHA for fe28266
LeetCode/all/5.最长回文子串.go
@@ -72,7 +72,6 @@ func longestPalindrome(s string) string {
72
dp[i] = make([]bool,n)
73
dp[i][i] = true
74
}
75
-
76
// 枚举子串长度,从 2 开始,最长为 n
77
for L := 2;L < n + 1;L++{
78
// 枚举左边界
0 commit comments