Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
b = 2;
out = sumDigits(a);
assert(isequal(out, b))
B =
2
|
2 | Pass |
a = 10;
b = 7;
out = sumDigits(a);
assert(isequal(out, b))
B =
1
B =
1 0
B =
1 0 2
B =
1 0 2 4
|
3 | Pass |
a = 16;
b = 25;
out = sumDigits(a);
assert(isequal(out, b))
B =
6
B =
6 5
B =
6 5 5
B =
6 5 5 3
B =
6 5 5 3 6
|
584 Solvers
Magic is simple (for beginners)
2756 Solvers
Celsius to Fahrenheit converter
389 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Convert given decimal number to binary number.
639 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!