1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 242,
"dislikes": 25,
"likes": 259,
"dislikes": 26,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Detect Capital\", \"titleSlug\": \"detect-capital\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"To Lower Case\", \"titleSlug\": \"to-lower-case\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "\"capiTalIze tHe titLe\"\n\"First leTTeR of EACH Word\"\n\"i lOve leetcode\"",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"20.9K\", \"totalSubmission\": \"35K\", \"totalAcceptedRaw\": 20892, \"totalSubmissionRaw\": 35028, \"acRate\": \"59.6%\"}",
"stats": "{\"totalAccepted\": \"22.2K\", \"totalSubmission\": \"37.3K\", \"totalAcceptedRaw\": 22220, \"totalSubmissionRaw\": 37252, \"acRate\": \"59.6%\"}",
"hints": [
"Firstly, try to find all the words present in the string.",
"On the basis of each word's lengths, simulate the process explained in Problem."