For given input matrix a, rotate it by 90 degrees and find the sum of the diagonals.

Example: Input:

a =
     1     2     3     4
     5     6     7     8
     8    10    12    -2
    -1    -3    -5    -7

Output is:

20

Solution Stats

82 Solutions

62 Solvers

Last Solution submitted on Mar 02, 2026

Last 200 Solutions

Solution Comments

Show comments
Loading...