I did it!
(^^;)
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [ ...
1 2 0 0 0
0 0 5 0 0
2 7 0 0 0
0 6 9 3 3];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
r =
0
x =
2
x =
2
r =
1
x =
2
r =
3
x =
4
r =
4
|
2 | Pass |
a = [ ...
1 2 0 0
0 0 5 0
0 6 9 -3
2 7 0 0
0 0 0 0];
r_correct = 3;
assert(isequal(fullest_row(a),r_correct))
r =
0
x =
2
x =
2
r =
1
x =
3
r =
3
|
3 | Pass |
a = [ ...
1 0 0
0 0 0
0 0 0
0 0 0
0 2 3];
r_correct = 5;
assert(isequal(fullest_row(a),r_correct))
r =
0
x =
1
x =
1
r =
1
x =
2
r =
5
|
4 | Pass |
a = [ ...
0
0
0
-3
0
0];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
r =
0
x =
0
x =
0
r =
1
x =
0
r =
2
x =
0
r =
3
x =
1
r =
4
|
6718 Solvers
Sum all integers from 1 to 2^n
8411 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
379 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!