Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 6;
c_correct = 1;
assert(isequal(goldbach2(n),c_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 goldbach2 (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
n = 10;
c_correct = 2;
assert(isequal(goldbach2(n),c_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 goldbach2 (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
n = 50;
c_correct = 4;
assert(isequal(goldbach2(n),c_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 goldbach2 (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
n = 480;
c_correct = 29;
assert(isequal(goldbach2(n),c_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 goldbach2 (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
Which values occur exactly three times?
3817 Solvers
707 Solvers
502 Solvers
Getting the indices from a matrice
360 Solvers
find the maximum element of the matrix
349 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!