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 = 0;
assert(isequal(cud(x),y_correct))
ans =
[]
|
2 | Pass |
x = 1;
y_correct = [0 1 0];
assert(isequal(cud(x),y_correct))
ans =
[]
|
3 | Pass |
x = 2;
y_correct = [0 1 2 1 0];
assert(isequal(cud(x),y_correct))
ans =
[]
|
4 | Pass |
x = 3;
y_correct = [0 1 2 3 2 1 0];
assert(isequal(cud(x),y_correct))
ans =
[]
|
4836 Solvers
1936 Solvers
2726 Solvers
196 Solvers
165 Solvers