Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 6;
y_correct = 13;
assert(isequal(euler007(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 euler007 (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 10001;
y_correct = 104743;
assert(isequal(euler007(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 euler007 (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 123456;
y_correct = 1632899;
assert(isequal(euler007(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 euler007 (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
Create a cell array out of a struct
189 Solvers
210 Solvers
Sum all integers from 1 to 2^n
6336 Solvers
Back to basics 23 - Triangular matrix
532 Solvers
Cell Counting: How Many Draws?
255 Solvers