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 state names that start with the letter N
465 Solvers
Make one big string out of two smaller strings
1070 Solvers
159 Solvers
378 Solvers
2999 Solvers