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 =
[]
|
4107 Solvers
Back to basics 4 - Search Path
322 Solvers
Back to basics 18 - justification
176 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!