Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 0;
y_correct = 0;
assert(isequal(cud(x),y_correct))
|
2 | Pass |
%%
x = 1;
y_correct = [0 1 0];
assert(isequal(cud(x),y_correct))
|
3 | Pass |
%%
x = 2;
y_correct = [0 1 2 1 0];
assert(isequal(cud(x),y_correct))
|
4 | Pass |
%%
x = 3;
y_correct = [0 1 2 3 2 1 0];
assert(isequal(cud(x),y_correct))
|
2500 Solvers
Find common elements in matrix rows
1232 Solvers
556 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!