1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21: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,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 310,
"likes": 315,
"dislikes": 11,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Valid Palindrome\", \"titleSlug\": \"valid-palindrome\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"37.1K\", \"totalSubmission\": \"46.5K\", \"totalAcceptedRaw\": 37075, \"totalSubmissionRaw\": 46465, \"acRate\": \"79.8%\"}",
"stats": "{\"totalAccepted\": \"37.3K\", \"totalSubmission\": \"46.8K\", \"totalAcceptedRaw\": 37338, \"totalSubmissionRaw\": 46829, \"acRate\": \"79.7%\"}",
"hints": [
"Iterate through the elements in order. As soon as the current element is a palindrome, return it.",
"To check if an element is a palindrome, can you reverse the string?"