1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +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": 228,
"dislikes": 10,
"likes": 239,
"dislikes": 12,
"isLiked": null,
"similarQuestions": "[{\"title\": \"String to Integer (atoi)\", \"titleSlug\": \"string-to-integer-atoi\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Sorting the Sentence\", \"titleSlug\": \"sorting-the-sentence\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Check if All A's Appears Before All B's\", \"titleSlug\": \"check-if-all-as-appears-before-all-bs\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "\"1 box has 3 blue 4 red 6 green and 12 yellow marbles\"\n\"hello world 5 x 5\"\n\"sunset is at 7 51 pm overnight lows will be in the low 50 and 60 s\"",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"21.9K\", \"totalSubmission\": \"32.1K\", \"totalAcceptedRaw\": 21874, \"totalSubmissionRaw\": 32119, \"acRate\": \"68.1%\"}",
"stats": "{\"totalAccepted\": \"23.5K\", \"totalSubmission\": \"34.6K\", \"totalAcceptedRaw\": 23460, \"totalSubmissionRaw\": 34601, \"acRate\": \"67.8%\"}",
"hints": [
"Use string tokenization of your language to extract all the tokens of the string easily.",
"For each token extracted, how can you tell if it is a number? Does the first letter being a digit mean something?",