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 = 0;
y_correct = [1 0];
assert(isequal(next_series(x),y_correct))
y =
1 0
|
2 | Pass |
x = [1 2 3 4];
y_correct = [1 1 1 2 1 3 1 4];
assert(isequal(next_series(x),y_correct))
y =
1 1 1 2 1 3 1 4
|
3 | Pass |
x = [0 0 0 0 0 0 0 0 0];
y_correct = [9 0];
assert(isequal(next_series(x),y_correct))
y =
9 0
|
4 | Pass |
x = [2 2 2 0];
y_correct = [3 2 1 0];
assert(isequal(next_series(x),y_correct))
y =
3 2 1 0
|
5 | Pass |
x = [0 0 3];
y_correct = [2 0 1 3];
assert(isequal(next_series(x),y_correct))
y =
2 0 1 3
|
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))
y =
4 1 2 2 5 4 1 3 2 0 1 1
|
952 Solvers
3377 Solvers
188 Solvers
188 Solvers
521 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!