Loading practice questions
Given a 2D matrix, find a submatrix that has the maximum sum. Which of the following methods can be used to solve this problem?
Correct Answer: D — Brute force, Recursion, Dynamic programming
Explanation:
Brute force, Recursion and Dynamic programming can be used to find the submatrix that has the maximum sum.