Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
x = [9 2 2];
y_correct = [9 2];
assert(isequal(your_fcn_name(x),y_correct))
x = [-4 1 1];
y_correct = [-4 1];
assert(isequal(your_fcn_name(x),y_correct))
x = [42 1 1]
y_correct = [42 1];
assert(isequal(your_fcn_name(x),y_correct))
x = [42 1 1 1 42 17 17];
y_correct = [42 1 17];
assert(isequal(your_fcn_name(x),y_correct))
x =
42 1 1
|
1312 Solvers
434 Solvers
Back to basics 6 - Column Vector
809 Solvers
281 Solvers
137 Solvers