1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/回文子字符串的个数 [a7VOhD].html
2022-03-29 12:43:11 +08:00

34 lines
1023 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给定一个字符串 <code>s</code> ,请计算这个字符串中有多少个回文子字符串。</p>
<p>具有不同开始位置或结束位置的子串,即使是由相同的字符组成,也会被视作不同的子串。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>s = "abc"
<strong>输出:</strong>3
<strong>解释:</strong>三个回文子串: "a", "b", "c"
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>s =<strong> </strong>"aaa"
<strong>输出:</strong>6
<strong>解释:</strong>6个回文子串: "a", "a", "a", "aa", "aa", "aaa"</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= s.length &lt;= 1000</code></li>
<li><code>s</code> 由小写英文字母组成</li>
</ul>
<p>&nbsp;</p>
<p><meta charset="UTF-8" />注意:本题与主站 647 题相同:<a href="https://leetcode-cn.com/problems/palindromic-substrings/">https://leetcode-cn.com/problems/palindromic-substrings/</a>&nbsp;</p>