Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
p_correct = 1;
assert(isequal(factor_digits(n),p_correct))
primeSet =
2
|
2 | Pass |
n = 26;
p_correct = [1 0 0 0 0 1];
assert(isequal(factor_digits(n),p_correct))
primeSet =
13 11 7 5 3 2
|
3 | Pass |
n = 168;
p_correct = [1 0 1 3];
assert(isequal(factor_digits(n),p_correct))
primeSet =
7 5 3 2
|
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))
primeSet =
37 31 29 23 19 17 13 11 7 5 3 2
|
1421 Solvers
Remove the polynomials that have positive real elements of their roots.
629 Solvers
Who knows the last digit of pi?
557 Solvers
484 Solvers
393 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!