mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-10-21 21:16:45 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong></p>\n\n<pre><strong>输入:</strong>matrix = [[1,2,3],[4,5,6],[7,8,9]]\n<strong>输出:</strong>[1,2,3,6,9,8,7,4,5]\n</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre><strong>输入:</strong>matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]\n<strong>输出:</strong>[1,2,3,4,8,12,11,10,9,5,6,7]\n</pre>\n\n<p> </p>\n\n<p><strong>限制:</strong></p>\n\n<ul>\n\t<li><code>0 <= matrix.length <= 100</code></li>\n\t<li><code>0 <= matrix[i].length <= 100</code></li>\n</ul>\n\n<p>注意:本题与主站 54 题相同:<a href=\"https://leetcode-cn.com/problems/spiral-matrix/\">https://leetcode-cn.com/problems/spiral-matrix/</a></p>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Easy",
|
||||
"likes": 382,
|
||||
"likes": 383,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -149,7 +149,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"181.6K\", \"totalSubmission\": \"414.8K\", \"totalAcceptedRaw\": 181625, \"totalSubmissionRaw\": 414841, \"acRate\": \"43.8%\"}",
|
||||
"stats": "{\"totalAccepted\": \"182.3K\", \"totalSubmission\": \"416.2K\", \"totalAcceptedRaw\": 182262, \"totalSubmissionRaw\": 416241, \"acRate\": \"43.8%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
|
Reference in New Issue
Block a user