1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 23:11: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,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 620,
"dislikes": 41,
"likes": 656,
"dislikes": 44,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Arithmetic Subarrays\", \"titleSlug\": \"arithmetic-subarrays\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[3,5,1]\n[1,2,4]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"73.6K\", \"totalSubmission\": \"105.1K\", \"totalAcceptedRaw\": 73628, \"totalSubmissionRaw\": 105095, \"acRate\": \"70.1%\"}",
"stats": "{\"totalAccepted\": \"78.8K\", \"totalSubmission\": \"113K\", \"totalAcceptedRaw\": 78781, \"totalSubmissionRaw\": 112999, \"acRate\": \"69.7%\"}",
"hints": [
"Consider that any valid arithmetic progression will be in sorted order.",
"Sort the array, then check if the differences of all consecutive elements are equal."