Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 329 Bytes

MatrixSum.md

File metadata and controls

16 lines (10 loc) · 329 Bytes

MatrixSum

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

Problem Description

Find the sum of all elements in a two dimensional, rectangular array except for the corners.

Sample

Input Output
1 3 9 2
3 2 0 3
2 8 1 4
29