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))
b =
[]
c =
2
b =
2
c =
1
b =
2 1
c =
2
b =
2 1 2
c =
4
b =
2 1 2 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))
b =
[]
c =
2
b =
2
c =
1
b =
2 1
c =
3
b =
2 1 3
c =
2
b =
2 1 3 2
c =
0
b =
2 1 3 2 0
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))
b =
[]
c =
1
b =
1
c =
0
b =
1 0
c =
0
b =
1 0 0
c =
0
b =
1 0 0 0
c =
2
b =
1 0 0 0 2
r =
5
|
4 | Pass |
a = [ ...
0
0
0
-3
0
0];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
b =
[]
c =
0
b =
0
c =
0
b =
0 0
c =
0
b =
0 0 0
c =
1
b =
0 0 0 1
c =
0
b =
0 0 0 1 0
c =
0
b =
0 0 0 1 0 0
r =
4
|
3115 Solvers
1309 Solvers
15298 Solvers
Make one big string out of two smaller strings
1149 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!