This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Can't use combnk()? Getting an error for using?
Oh, I can use nchoosek() instead...
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
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!