Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
nList = 28:6:76;
for i = 1:length(nList)
n = nList(i);
[p1,p2] = goldbach(n)
assert(isprime(p1) && isprime(p2) && (p1+p2==n));
end
|
2 | Fail |
nList = [18 20 22 100 102 114 1000 2000 36 3600];
for i = 1:length(nList)
n = nList(i);
[p1,p2] = goldbach(n)
assert(isprime(p1) && isprime(p2) && (p1+p2==n));
end
|
260 Solvers
Simple equation: Annual salary
3779 Solvers
363 Solvers
Calculate Amount of Cake Frosting
7514 Solvers
1822 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!