Skip to content

Commit 4328037

Browse files
authored
Create MaximumSumSubMatrixInAGivenMatrix.java
1 parent d0ecd57 commit 4328037

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
https://www.techiedelight.com/find-maximum-sum-submatrix-in-given-matrix/
3+
First read - https://www.techiedelight.com/calculate-sum-elements-sub-matrix-constant-time/
4+
Extenstion of the problem - Calculate Sum of All Elements in a Submatrix in constant time
5+
6+
In this problem we are supposed to find maximum sum of a submatrix of size k*k
7+
8+
*/
9+
10+
11+

0 commit comments

Comments
 (0)