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,10 +11,10 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 203,
"dislikes": 12,
"likes": 222,
"dislikes": 13,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Sum of Digits of String After Convert\", \"titleSlug\": \"sum-of-digits-of-string-after-convert\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"similarQuestions": "[{\"title\": \"Sum of Digits of String After Convert\", \"titleSlug\": \"sum-of-digits-of-string-after-convert\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Number of Ways to Buy Pens and Pencils\", \"titleSlug\": \"number-of-ways-to-buy-pens-and-pencils\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "4\n30",
"categoryTitle": "Algorithms",
"contributors": [],
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"22.7K\", \"totalSubmission\": \"34.9K\", \"totalAcceptedRaw\": 22674, \"totalSubmissionRaw\": 34912, \"acRate\": \"64.9%\"}",
"stats": "{\"totalAccepted\": \"24K\", \"totalSubmission\": \"37.1K\", \"totalAcceptedRaw\": 23984, \"totalSubmissionRaw\": 37126, \"acRate\": \"64.6%\"}",
"hints": [
"Iterate through all integers from 1 to num.",
"For any integer, extract the individual digits to compute their sum and check if it is even."