Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 2;
assert(isequal(RecamanII(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 RecamanII (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(RecamanII(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 RecamanII (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 3;
y_correct = 4;
assert(isequal(RecamanII(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 RecamanII (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 90;
y_correct = 35;
assert(isequal(RecamanII(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 RecamanII (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 123456;
y_correct = 895;
assert(isequal(RecamanII(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 RecamanII (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = 123456789;
y_correct = 46633;
assert(isequal(RecamanII(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 RecamanII (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
753 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
206 Solvers
365 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!