Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 306 Bytes

DiagonalSum.md

File metadata and controls

16 lines (10 loc) · 306 Bytes

DiagonalSum

Difficulty Tags Solution Link
Easy [Arrays, Matrices, Integers] To Do

Problem Description

Find the sum of the diagonals of a square, two-dimensional array of Ints

Sample

Input Output
1 2 9
8 2 3
4 5 6
24