DEV Community

Cover image for Java Solution to leetcode problem 1572. Matrix Diagonal Sum
Mohammad Hussain
Mohammad Hussain

Posted on • Originally published at hussaincodes.in

Java Solution to leetcode problem 1572. Matrix Diagonal Sum

Java Solution to leetcode problem 1572. Matrix Diagonal Sum

Hussain Code

·Feb 28, 2022·

1 min read

Subscribe to my newsletter and never missmy upcoming articles

Subscribe

Given a square matrix mat, return the sum of the matrix diagonals.

Only include the sum of all the elements on the primary diagonal and all the elements on the secondary diagonal that are not part of the primary diagonal.

sample_1911.png

Input:mat= [[1,2,3],
              [4,5,6],
              [7,8,9]]Output:25Explanation: Diagonals sum:1+5+9+3+7=25Noticethatelementmat[1][1]=5iscountedonlyonce.
Enter fullscreen mode Exit fullscreen mode

Leetcode question link - leetcode.com/problems/matrix-diagonal-sum

Solution :-

public class Q15 {public static void main(String[] args) {int[][] mat={{1,2,3},
                {4,5,6},
                {7,8,9}};
        System.out.println(diagonalSum(mat));
    }
    static int diagonalSum(int[][] mat) {int n = mat.length;int principal =0, secondary =0;for (int i =0; i < n; i++) {
            principal += mat[i][i];
            secondary += mat[i][n - i -1];
        }return n%2==0 ? (principal + secondary) : (principal + secondary - mat[n/2][n/2]);
    }
}
Enter fullscreen mode Exit fullscreen mode

Like

Share this

Top comments (0)