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
|
Return the largest number that is adjacent to a zero
3749 Solvers
651 Solvers
331 Solvers
2334 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!