Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
b = 2;
out = sumDigits(a);
assert(isequal(out, b))
a =
'2'
c =
1×1 cell array
{[2]}
b =
2
|
2 | Pass |
a = 10;
b = 7;
out = sumDigits(a);
assert(isequal(out, b))
a =
'1024'
c =
1×1 cell array
{[1]}
c =
1×2 cell array
{[1]} {[0]}
c =
1×3 cell array
{[1]} {[0]} {[2]}
c =
1×4 cell array
{[1]} {[0]} {[2]} {[4]}
b =
7
|
3 | Pass |
a = 16;
b = 25;
out = sumDigits(a);
assert(isequal(out, b))
a =
'65536'
c =
1×1 cell array
{[6]}
c =
1×2 cell array
{[6]} {[5]}
c =
1×3 cell array
{[6]} {[5]} {[5]}
c =
1×4 cell array
{[6]} {[5]} {[5]} {[3]}
c =
1×5 cell array
{[6]} {[5]} {[5]} {[3]} {[6]}
b =
25
|
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
Arrange vector in ascending order
541 Solvers
Set the array elements whose value is 13 to 0
752 Solvers
273 Solvers
Is this is a Tic Tac Toe X Win?
366 Solvers