mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-12-19 10:34:57 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>给定一个包含大写字母和小写字母的字符串<meta charset=\"UTF-8\" /> <code>s</code> ,返回 <em>通过这些字母构造成的 <strong>最长的回文串</strong></em> 。</p>\n\n<p>在构造过程中,请注意 <strong>区分大小写</strong> 。比如 <code>\"Aa\"</code> 不能当做一个回文字符串。</p>\n\n<p> </p>\n\n<p><strong>示例 1: </strong></p>\n\n<pre>\n<strong>输入:</strong>s = \"abccccdd\"\n<strong>输出:</strong>7\n<strong>解释:</strong>\n我们可以构造的最长的回文串是\"dccaccd\", 它的长度是 7。\n</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre>\n<strong>输入:</strong>s = \"a\"\n<strong>输入:</strong>1\n</pre>\n\n<p><strong>示例 3:</strong></p>\n\n<pre>\n<strong>输入:</strong>s = \"bb\"\n<strong>输入:</strong> 2\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>1 <= s.length <= 2000</code></li>\n\t<li><code>s</code> 只能由小写和/或大写英文字母组成</li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Easy",
|
||||
"likes": 394,
|
||||
"likes": 409,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Palindrome Permutation\", \"titleSlug\": \"palindrome-permutation\", \"difficulty\": \"Easy\", \"translatedTitle\": \"\\u56de\\u6587\\u6392\\u5217\"}]",
|
||||
@@ -149,7 +149,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"116K\", \"totalSubmission\": \"208.9K\", \"totalAcceptedRaw\": 116047, \"totalSubmissionRaw\": 208862, \"acRate\": \"55.6%\"}",
|
||||
"stats": "{\"totalAccepted\": \"120.5K\", \"totalSubmission\": \"216.9K\", \"totalAcceptedRaw\": 120531, \"totalSubmissionRaw\": 216904, \"acRate\": \"55.6%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
|
||||
Reference in New Issue
Block a user