Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 5 12 10 7];
y_correct = [1 2 NaN 12 NaN 7];
assert(isequaln(repnan(x),y_correct))
x =
1 2 NaN 12 NaN 7
ans =
[]
|
2 | Pass |
%%
x = [-1 7 -15 20 11 3];
y_correct = [-1 7 NaN NaN 11 3];
assert(isequaln(repnan(x),y_correct))
x =
-1 7 NaN NaN 11 3
ans =
[]
|
Return the largest number that is adjacent to a zero
3750 Solvers
4329 Solvers
1143 Solvers
274 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!