Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 6;
c_correct = 1;
assert(isequal(goldbach2(n),c_correct))
|
2 | Pass |
%%
n = 10;
c_correct = 2;
assert(isequal(goldbach2(n),c_correct))
|
3 | Pass |
%%
n = 50;
c_correct = 4;
assert(isequal(goldbach2(n),c_correct))
|
4 | Pass |
%%
n = 480;
c_correct = 29;
assert(isequal(goldbach2(n),c_correct))
|
Count from 0 to N^M in base N.
200 Solvers
543 Solvers
Matrix which contains the values of an other matrix A at the given locations.
196 Solvers
Set the array elements whose value is 13 to 0
753 Solvers
Try 1.5.4: Celsius to Fahrenheit
486 Solvers