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-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 1998,
"dislikes": 4876,
"likes": 2002,
"dislikes": 4883,
"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.5K\", \"totalSubmission\": \"997.3K\", \"totalAcceptedRaw\": 294531, \"totalSubmissionRaw\": 997309, \"acRate\": \"29.5%\"}",
"stats": "{\"totalAccepted\": \"294.9K\", \"totalSubmission\": \"998.3K\", \"totalAcceptedRaw\": 294878, \"totalSubmissionRaw\": 998283, \"acRate\": \"29.5%\"}",
"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.",