This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
The best solution without regexprep.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 0;
y_correct = [1 0];
assert(isequal(next_series(x),y_correct))
|
2 | Pass |
%%
x = [1 2 3 4];
y_correct = [1 1 1 2 1 3 1 4];
assert(isequal(next_series(x),y_correct))
|
3 | Pass |
%%
x = [0 0 0 0 0 0 0 0 0];
y_correct = [9 0];
assert(isequal(next_series(x),y_correct))
|
4 | Pass |
%%
x = [2 2 2 0];
y_correct = [3 2 1 0];
assert(isequal(next_series(x),y_correct))
|
5 | Pass |
%%
x = [0 0 3];
y_correct = [2 0 1 3];
assert(isequal(next_series(x),y_correct))
|
6 | Pass |
%%
x = [1 1 1 1 2 2 4 4 4 4 4 3 0 0 1];
y_correct = [4 1 2 2 5 4 1 3 2 0 1 1];
assert(isequal(next_series(x),y_correct))
|
Return the largest number that is adjacent to a zero
3106 Solvers
298 Solvers
118 Solvers
81 Solvers
203 Solvers