1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 23:41:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 367,
"likes": 368,
"dislikes": 37,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Count Good Triplets\", \"titleSlug\": \"count-good-triplets\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Count Square Sum Triples\", \"titleSlug\": \"count-square-sum-triples\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Number of Arithmetic Triplets\", \"titleSlug\": \"number-of-arithmetic-triplets\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"35.3K\", \"totalSubmission\": \"49.8K\", \"totalAcceptedRaw\": 35261, \"totalSubmissionRaw\": 49833, \"acRate\": \"70.8%\"}",
"stats": "{\"totalAccepted\": \"35.3K\", \"totalSubmission\": \"49.9K\", \"totalAcceptedRaw\": 35274, \"totalSubmissionRaw\": 49852, \"acRate\": \"70.8%\"}",
"hints": [
"The constraints are very small. Can we try every triplet?",
"Yes, we can. Use three loops to iterate through all the possible triplets, ensuring the condition i < j < k holds."