Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 6;
c_correct = 1;
assert(isequal(goldbach2(n),c_correct))
c =
1
|
2 | Pass |
n = 10;
c_correct = 2;
assert(isequal(goldbach2(n),c_correct))
c =
2
|
3 | Pass |
n = 50;
c_correct = 4;
assert(isequal(goldbach2(n),c_correct))
c =
4
|
4 | Pass |
n = 480;
c_correct = 29;
assert(isequal(goldbach2(n),c_correct))
c =
29
|
1727 Solvers
3611 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
Matlab Basics - Convert a row vector to a column vector
423 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!