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
|
Back to basics 17 - white space
245 Solvers
856 Solvers
724 Solvers
314 Solvers
Deleting an element in a matrix
325 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!