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 =
[]
b =
0
b =
1
b =
2
B =
2
b =
0
b =
1
B =
2 1
b =
0
b =
1
b =
2
B =
2 1 2
b =
0
b =
1
b =
2
b =
3
b =
4
B =
2 1 2 4
r =
4
maxi =
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 =
[]
b =
0
b =
1
b =
2
B =
2
b =
0
b =
1
B =
2 1
b =
0
b =
1
b =
2
b =
3
B =
2 1 3
b =
0
b =
1
b =
2
B =
2 1 3 2
b =
0
B =
2 1 3 2 0
r =
3
maxi =
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 =
[]
b =
0
b =
1
B =
1
b =
0
B =
1 0
b =
0
B =
1 0 0
b =
0
B =
1 0 0 0
b =
0
b =
1
b =
2
B =
1 0 0 0 2
r =
5
maxi =
2
|
4 | Pass |
%%
a = [ ...
0
0
0
-3
0
0];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
B =
[]
b =
0
B =
0
b =
0
B =
0 0
b =
0
B =
0 0 0
b =
0
b =
1
B =
0 0 0 1
b =
0
B =
0 0 0 1 0
b =
0
B =
0 0 0 1 0 0
r =
4
maxi =
1
|
Find state names that start with the letter N
598 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Set some matrix elements to zero
290 Solvers
Create a Multiplication table matrix...
281 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!