Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b = 2;
out = sumDigits(a);
assert(isequal(out, b))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In sumDigits at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
2 | Pass |
%%
a = 10;
b = 7;
out = sumDigits(a);
assert(isequal(out, b))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In sumDigits at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
3 | Pass |
%%
a = 16;
b = 25;
out = sumDigits(a);
assert(isequal(out, b))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In sumDigits at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
17120 Solvers
Getting the indices from a vector
3206 Solvers
559 Solvers
420 Solvers
389 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!