mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
|
<p>Given a string <code>s</code> which consists of lowercase or uppercase letters, return <em>the length of the <strong>longest palindrome</strong></em> that can be built with those letters.</p>
|
||
|
|
||
|
<p>Letters are <strong>case sensitive</strong>, for example, <code>"Aa"</code> is not considered a palindrome here.</p>
|
||
|
|
||
|
<p> </p>
|
||
|
<p><strong>Example 1:</strong></p>
|
||
|
|
||
|
<pre>
|
||
|
<strong>Input:</strong> s = "abccccdd"
|
||
|
<strong>Output:</strong> 7
|
||
|
<strong>Explanation:</strong>
|
||
|
One longest palindrome that can be built is "dccaccd", whose length is 7.
|
||
|
</pre>
|
||
|
|
||
|
<p><strong>Example 2:</strong></p>
|
||
|
|
||
|
<pre>
|
||
|
<strong>Input:</strong> s = "a"
|
||
|
<strong>Output:</strong> 1
|
||
|
</pre>
|
||
|
|
||
|
<p><strong>Example 3:</strong></p>
|
||
|
|
||
|
<pre>
|
||
|
<strong>Input:</strong> s = "bb"
|
||
|
<strong>Output:</strong> 2
|
||
|
</pre>
|
||
|
|
||
|
<p> </p>
|
||
|
<p><strong>Constraints:</strong></p>
|
||
|
|
||
|
<ul>
|
||
|
<li><code>1 <= s.length <= 2000</code></li>
|
||
|
<li><code>s</code> consists of lowercase <strong>and/or</strong> uppercase English letters only.</li>
|
||
|
</ul>
|