1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +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": 77,
"dislikes": 115,
"likes": 81,
"dislikes": 119,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Strobogrammatic Number II\", \"titleSlug\": \"strobogrammatic-number-ii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Prime Palindrome\", \"titleSlug\": \"prime-palindrome\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "2\n5\n3\n7\n7\n17",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"4.6K\", \"totalSubmission\": \"11.5K\", \"totalAcceptedRaw\": 4636, \"totalSubmissionRaw\": 11548, \"acRate\": \"40.1%\"}",
"stats": "{\"totalAccepted\": \"5.1K\", \"totalSubmission\": \"12.3K\", \"totalAcceptedRaw\": 5079, \"totalSubmissionRaw\": 12311, \"acRate\": \"41.3%\"}",
"hints": [
"Since we need to reduce search space, instead of checking if every number is a palindrome in base-10, can we try to \"generate\" the palindromic numbers?",
"If you are provided with a d digit number, how can you generate a palindrome with 2*d or 2*d - 1 digit?",