Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
p_correct = 1;
assert(isequal(factor_digits(n),p_correct))
n =
1
|
2 | Pass |
n = 26;
p_correct = [1 0 0 0 0 1];
assert(isequal(factor_digits(n),p_correct))
n =
13
n =
1
|
3 | Pass |
n = 168;
p_correct = [1 0 1 3];
assert(isequal(factor_digits(n),p_correct))
n =
84
n =
42
n =
21
n =
7
n =
1
|
4 | Pass |
n = 999;
p_correct = [1 0 0 0 0 0 0 0 0 0 3 0];
assert(isequal(factor_digits(n),p_correct))
n =
333
n =
111
n =
37
n =
1
|
312 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
367 Solvers
569 Solvers
Calculate Amount of Cake Frosting
7508 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!