1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/矩阵对角线元素的和 [matrix-diagonal-sum].html
2022-03-29 12:43:11 +08:00

46 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个正方形矩阵 <code>mat</code>,请你返回矩阵对角线元素的和。</p>
<p>请你返回在矩阵主对角线上的元素和副对角线上且不在主对角线上元素的和。</p>
<p>&nbsp;</p>
<p><strong>示例&nbsp; 1</strong></p>
<p><img alt="" src="https://assets.leetcode.com/uploads/2020/08/14/sample_1911.png" style="height:174px; width:336px" /></p>
<pre>
<strong>输入:</strong>mat = [[<strong>1</strong>,2,<strong>3</strong>],
&nbsp; [4,<strong>5</strong>,6],
&nbsp; [<strong>7</strong>,8,<strong>9</strong>]]
<strong>输出:</strong>25
<strong>解释:</strong>对角线的和为1 + 5 + 9 + 3 + 7 = 25
请注意,元素 mat[1][1] = 5 只会被计算一次。
</pre>
<p><strong>示例&nbsp; 2</strong></p>
<pre>
<strong>输入:</strong>mat = [[<strong>1</strong>,1,1,<strong>1</strong>],
&nbsp; [1,<strong>1</strong>,<strong>1</strong>,1],
&nbsp; [1,<strong>1</strong>,<strong>1</strong>,1],
&nbsp; [<strong>1</strong>,1,1,<strong>1</strong>]]
<strong>输出:</strong>8
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>mat = [[<strong>5</strong>]]
<strong>输出:</strong>5
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>n == mat.length == mat[i].length</code></li>
<li><code>1 &lt;= n &lt;= 100</code></li>
<li><code>1 &lt;= mat[i][j] &lt;= 100</code></li>
</ul>