Leetcode—1572.矩阵对角线元素的和【简单】

2023每日刷题(七十三)

Leetcode—1572.矩阵对角线元素的和

Leetcode—1572.矩阵对角线元素的和【简单】_第1张图片

实现代码

class Solution {
public:
    int diagonalSum(vector<vector<int>>& mat) {
        int n = mat.size();
        if(n == 1) {
            return mat[0][0];
        }
        int sum = 0;
        int i = 0, j = n - 1;
        while(i < n) {
            sum += mat[i][i] + mat[i][j];
            i++;
            j--;
        }
        if(n % 2) {
            sum -= mat[n / 2][n / 2];
        }
        return sum;
    }
};

运行结果

Leetcode—1572.矩阵对角线元素的和【简单】_第2张图片
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!

你可能感兴趣的:(LeetCode刷题,leetcode,矩阵,算法,c++,经验分享)