Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 2;
p_correct = 1;
assert(isequal(factor_digits(n),p_correct))
|
2 | Pass |
%%
n = 26;
p_correct = [1 0 0 0 0 1];
assert(isequal(factor_digits(n),p_correct))
|
3 | Pass |
%%
n = 168;
p_correct = [1 0 1 3];
assert(isequal(factor_digits(n),p_correct))
|
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))
|
Get the area codes from a list of phone numbers
532 Solvers
188 Solvers
Remove the two elements next to NaN value
411 Solvers
284 Solvers
390 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!