1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01: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,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 617,
"dislikes": 40,
"likes": 620,
"dislikes": 41,
"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.1K\", \"totalSubmission\": \"104.3K\", \"totalAcceptedRaw\": 73119, \"totalSubmissionRaw\": 104336, \"acRate\": \"70.1%\"}",
"stats": "{\"totalAccepted\": \"73.6K\", \"totalSubmission\": \"105.1K\", \"totalAcceptedRaw\": 73628, \"totalSubmissionRaw\": 105095, \"acRate\": \"70.1%\"}",
"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."