This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3; 4 5 6;7 8 9];
y_correct = 40;
assert(isequal(AddMatrixLim(x),y_correct))
ans =
40
|
2 | Pass |
x= [1 5 6 7; 4 9 4 7; 9 4 2 1; 0 1 2 8]
y_correct = 51;
assert(isequal(AddMatrixLim(x),y_correct))
x =
1 5 6 7
4 9 4 7
9 4 2 1
0 1 2 8
ans =
51
|
Find relatively common elements in matrix rows
644 Solvers
1579 Solvers
1878 Solvers
328 Solvers
188 Solvers