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 =
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 =
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 =
5
|
4 | Pass |
%%
a = [ ...
0
0
0
-3
0
0];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
r =
4
|
Return a list sorted by number of occurrences
1504 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
Set the array elements whose value is 13 to 0
935 Solvers
376 Solvers
367 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!