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-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": "Easy",
"likes": 315,
"dislikes": 11,
"likes": 363,
"dislikes": 12,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Valid Palindrome\", \"titleSlug\": \"valid-palindrome\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "[\"abc\",\"car\",\"ada\",\"racecar\",\"cool\"]\n[\"notapalindrome\",\"racecar\"]\n[\"def\",\"ghi\"]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"37.3K\", \"totalSubmission\": \"46.8K\", \"totalAcceptedRaw\": 37338, \"totalSubmissionRaw\": 46829, \"acRate\": \"79.7%\"}",
"stats": "{\"totalAccepted\": \"41.3K\", \"totalSubmission\": \"52K\", \"totalAcceptedRaw\": 41297, \"totalSubmissionRaw\": 51997, \"acRate\": \"79.4%\"}",
"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?"