1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-08 08:51:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 16:56:27 +08:00
parent e730aa6794
commit ad15da05aa
2517 changed files with 7358 additions and 7332 deletions

View File

@@ -12,7 +12,7 @@
"translatedContent": "<p>给你一个字符串 <code>s</code> ,将该字符串中的大写字母转换成相同的小写字母,返回新的字符串。</p>\n\n<p> </p>\n\n<p><strong>示例 1</strong></p>\n\n<pre>\n<strong>输入:</strong>s = \"Hello\"\n<strong>输出:</strong>\"hello\"\n</pre>\n\n<p><strong>示例 2</strong></p>\n\n<pre>\n<strong>输入:</strong>s = \"here\"\n<strong>输出:</strong>\"here\"\n</pre>\n\n<p><strong>示例 3</strong></p>\n\n<pre>\n<strong>输入:</strong>s = \"LOVELY\"\n<strong>输出:</strong>\"lovely\"\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>1 <= s.length <= 100</code></li>\n\t<li><code>s</code> 由 ASCII 字符集中的可打印字符组成</li>\n</ul>\n",
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 201,
"likes": 202,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"103.9K\", \"totalSubmission\": \"134.4K\", \"totalAcceptedRaw\": 103889, \"totalSubmissionRaw\": 134431, \"acRate\": \"77.3%\"}",
"stats": "{\"totalAccepted\": \"104.1K\", \"totalSubmission\": \"134.7K\", \"totalAcceptedRaw\": 104075, \"totalSubmissionRaw\": 134667, \"acRate\": \"77.3%\"}",
"hints": [
"Most languages support lowercase conversion for a string data type. However, that is certainly not the purpose of the problem. Think about how the implementation of the lowercase function call can be done easily.",
"<b>Think ASCII!</b>",