Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 1:5;
y_correct = [3 -3 3 -3 3];
assert(isequal(your_fcn_name(x),y_correct))
f =
3
|
2 | Fail |
x = 1:6;
y_correct = [7 -7 7 -7 7 -7]/2;
assert(isequal(your_fcn_name(x),y_correct))
f =
3.5000
|
3 | Fail |
x = 1:-1:-5;
y_correct = -[2 -2 2 -2 2 -2 2];
assert(isequal(your_fcn_name(x),y_correct))
f =
-2
|
1055 Solvers
498 Solvers
281 Solvers
Vectorize the digits of an Integer
236 Solvers
106 Solvers