1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01: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": "Hard",
"likes": 2002,
"dislikes": 4883,
"likes": 2044,
"dislikes": 4970,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Integer to Roman\", \"titleSlug\": \"integer-to-roman\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "123\n12345\n1234567",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"294.9K\", \"totalSubmission\": \"998.3K\", \"totalAcceptedRaw\": 294878, \"totalSubmissionRaw\": 998283, \"acRate\": \"29.5%\"}",
"stats": "{\"totalAccepted\": \"299.4K\", \"totalSubmission\": \"1M\", \"totalAcceptedRaw\": 299436, \"totalSubmissionRaw\": 1012749, \"acRate\": \"29.6%\"}",
"hints": [
"Did you see a pattern in dividing the number into chunk of words? For example, 123 and 123000.",
"Group the number by thousands (3 digits). You can write a helper function that takes a number less than 1000 and convert just that chunk to words.",