Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 2;
p_correct = 1;
assert(isequal(factor_digits(n),p_correct))
p =
1
|
2 | Pass |
%%
n = 26;
p_correct = [1 0 0 0 0 1];
assert(isequal(factor_digits(n),p_correct))
p =
1 0 0 0 0 1
|
3 | Pass |
%%
n = 168;
p_correct = [1 0 1 3];
assert(isequal(factor_digits(n),p_correct))
p =
1 0 1 3
|
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))
p =
Columns 1 through 10
1 0 0 0 0 0 0 0 0 0
Columns 11 through 12
3 0
|
Find the numeric mean of the prime numbers in a matrix.
6781 Solvers
3892 Solvers
485 Solvers
given 3 sides, find area of this triangle
680 Solvers
Rounding off numbers to n decimals
1050 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!