Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A = 1;row =1;
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
|
2 | Pass |
%%
A = [1;2;3;4];row = 1
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
1
|
3 | Pass |
%%
A = [1;2;3;4];row = 4
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
4
|
4 | Pass |
%%
A = [1;2;3;4];row = 2
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
2
|
5 | Pass |
%%
A = [1;2;3;4;5];row = 2
y_correct = 0;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
2
|
405 Solvers
381 Solvers
651 Solvers
521 Solvers
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!