1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 23:41:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 2879,
"dislikes": 6090,
"likes": 2880,
"dislikes": 6091,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Integer to Roman\", \"titleSlug\": \"integer-to-roman\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "123\n12345\n1234567",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"360.8K\", \"totalSubmission\": \"1.2M\", \"totalAcceptedRaw\": 360843, \"totalSubmissionRaw\": 1191016, \"acRate\": \"30.3%\"}",
"stats": "{\"totalAccepted\": \"360.9K\", \"totalSubmission\": \"1.2M\", \"totalAcceptedRaw\": 360879, \"totalSubmissionRaw\": 1191103, \"acRate\": \"30.3%\"}",
"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.",