How this is a solution
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
p_correct = 1;
assert(isequal(factor_digits(n),p_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In factor_digits (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
n = 26;
p_correct = [1 0 0 0 0 1];
assert(isequal(factor_digits(n),p_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In factor_digits (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
n = 168;
p_correct = [1 0 1 3];
assert(isequal(factor_digits(n),p_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In factor_digits (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In factor_digits (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35564 Solvers
785 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
Implement simple rotation cypher
943 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!