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 41fcda3 commit 7330d01Copy full SHA for 7330d01
problems/5.longest-palindromic-substring.md
@@ -118,6 +118,17 @@ var longestPalindrome = function(s) {
118
};
119
```
120
121
+
122
+***复杂度分析***
123
+- 时间复杂度:$O(N^2)$
124
+- 空间复杂度:$O(N^2)$
125
126
+更多题解可以访问我的LeetCode题解仓库:https://github.com/azl397985856/leetcode 。 目前已经30K star啦。
127
128
+大家也可以关注我的公众号《脑洞前端》获取更多更新鲜的LeetCode题解
129
130
+
131
132
## 相关题目
133
134
- [516.longest-palindromic-subsequence](./516.longest-palindromic-subsequence.md)
0 commit comments