Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 999;
y_correct = 906609;
assert(isequal(euler004(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 euler004 (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 9999;
y_correct = 99000099;
assert(isequal(euler004(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 euler004 (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 100;
y_correct = 9009;
assert(isequal(euler004(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 euler004 (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 2500;
y_correct = 6167616;
assert(isequal(euler004(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 euler004 (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
9823 Solvers
785 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
Number of digits in an integer
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!