Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b = 2;
out = sumDigits(a);
assert(isequal(out, b))
ans =
2
|
2 | Pass |
%%
a = 10;
b = 7;
out = sumDigits(a);
assert(isequal(out, b))
ans =
7
|
3 | Pass |
%%
a = 16;
b = 25;
out = sumDigits(a);
assert(isequal(out, b))
ans =
25
|
Find the alphabetic word product
1997 Solvers
Replace multiples of 5 with NaN
282 Solvers
find the maximum element of the matrix
254 Solvers
170 Solvers
372 Solvers