Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b = 2;
out = sumDigits(a);
assert(isequal(out, b))
|
2 | Pass |
%%
a = 10;
b = 7;
out = sumDigits(a);
assert(isequal(out, b))
|
3 | Pass |
%%
a = 16;
b = 25;
out = sumDigits(a);
assert(isequal(out, b))
|
How to find the position of an element in a vector without using the find function
2477 Solvers
3601 Solvers
Omit columns averages from a matrix
527 Solvers
405 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!