Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0];
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
ans =
0
|
2 | Pass |
x = [1 2 3];
y_correct = 6;
assert(isequal(your_fcn_name(x),y_correct))
ans =
6
|
3 | Pass |
x = [1 2 3 4];
y_correct = 10;
assert(isequal(your_fcn_name(x),y_correct))
ans =
10
|
6281 Solvers
Vectorize the digits of an Integer
269 Solvers
464 Solvers
289 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!