Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 20;
y_correct = 232792560;
assert(isequal(euler005(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 euler005 (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 10;
y_correct = 2520;
assert(isequal(euler005(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 euler005 (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 12;
y_correct = 27720;
assert(isequal(euler005(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 euler005 (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 14;
y_correct = 360360;
assert(isequal(euler005(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 euler005 (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
How to find the position of an element in a vector without using the find function
2323 Solvers
Sum all integers from 1 to 2^n
6334 Solvers
Project Euler: Problem 4, Palindromic numbers
121 Solvers
Getting the indices from a matrice
268 Solvers
312 Solvers