1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51: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": "Medium",
"likes": 796,
"dislikes": 74,
"likes": 817,
"dislikes": 76,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "[[1,2,3],[4,5,6],[7,8,9]]\n[[1,2,3,4,5],[6,7],[8],[9,10,11],[12,13,14,15,16]]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"39.6K\", \"totalSubmission\": \"79.4K\", \"totalAcceptedRaw\": 39564, \"totalSubmissionRaw\": 79399, \"acRate\": \"49.8%\"}",
"stats": "{\"totalAccepted\": \"40.6K\", \"totalSubmission\": \"81.2K\", \"totalAcceptedRaw\": 40575, \"totalSubmissionRaw\": 81184, \"acRate\": \"50.0%\"}",
"hints": [
"Notice that numbers with equal sums of row and column indexes belong to the same diagonal.",
"Store them in tuples (sum, row, val), sort them, and then regroup the answer."