Actions
Bug #3611
openDF005_Potential logical issue
Bug #3611:
DF005_Potential logical issue
Start date:
10/02/2025
Due date:
% Done:
0%
Estimated time:
Description
Line: 17
Description: int subRows = submatrix.length-1, subCols = subMatrix[0].length-1;
----> when calculating row and column do not have "-1"
Fixing solution: int subRows = submatrix.length, subCols = subMatrix[0].length; ---> Remove all "-1"
No data to display
Actions