Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = true;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 0;
y_correct = false;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 100;
y_correct = false;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 123;
y_correct = true;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 1203;
y_correct = false;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = 5432;
y_correct = false;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
x = 54321;
y_correct = true;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x = 2361457879;
y_correct = false;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
9 | Pass |
x = 1234567809;
y_correct = false;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x = 987654321;
y_correct = true;
assert(isequal(is_pandigital(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 is_pandigital (line 2)
In ScoringEngineTestPoint10 (line 3)
In solutionTest (line 21)]
|
Project Euler: Problem 2, Sum of even Fibonacci
461 Solvers
Back to basics 9 - Indexed References
348 Solvers
306 Solvers
Circular Primes (based on Project Euler, problem 35)
75 Solvers
Sum of odd numbers in a matrix
232 Solvers