This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
%%
x = [2 0];
y_correct = [1 -1];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
%%
x = 0:100;
y_correct = -50:50;
assert(isequal(your_fcn_name(x),y_correct))
|
14361 Solvers
Return the largest number that is adjacent to a zero
3118 Solvers
Back to basics 17 - white space
209 Solvers
Back to basics 21 - Matrix replicating
905 Solvers
285 Solvers