Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 41;
y_correct = false;
assert(isequal(zaphod(x),y_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 zaphod (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 42;
y_correct = true;
assert(isequal(zaphod(x),y_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 zaphod (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 43;
y_correct = false;
assert(isequal(zaphod(x),y_correct))%%
x = 44;
y_correct = false;
assert(isequal(zaphod(x),y_correct))%%
x = 45;
y_correct = false;
assert(isequal(zaphod(x),y_correct))%%
x = 46;
y_correct = false;
assert(isequal(zaphod(x),y_correct))%%
x = 47;
y_correct = false;
assert(isequal(zaphod(x),y_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 zaphod (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
[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 zaphod (line 2)
In ScoringEngineTestPoint3 (line 6)
In solutionTest (line 7)]
[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 zaphod (line 2)
In ScoringEngineTestPoint3 (line 9)
In solutionTest (line 7)]
[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 zaphod (line 2)
In ScoringEngineTestPoint3 (line 12)
In solutionTest (line 7)]
[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 zaphod (line 2)
In ScoringEngineTestPoint3 (line 15)
In solutionTest (line 7)]
|
4 | Pass |
x = 48;
y_correct = false;
assert(isequal(zaphod(x),y_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 zaphod (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 49;
y_correct = false;
assert(isequal(zaphod(x),y_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 zaphod (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = 50;
y_correct = false;
assert(isequal(zaphod(x),y_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 zaphod (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
Project Euler: Problem 5, Smallest multiple
397 Solvers
746 Solvers
271 Solvers
338 Solvers
511 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!