Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
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
p1 =
17
p2 =
11
p1 =
3
p2 =
31
p1 =
11
p2 =
29
p1 =
41
p2 =
5
p1 =
41
p2 =
11
p1 =
41
p2 =
17
p1 =
53
p2 =
11
p1 =
47
p2 =
23
p1 =
29
p2 =
47
|
2 | Pass |
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
p1 =
13
p2 =
5
p1 =
13
p2 =
7
p1 =
17
p2 =
5
p1 =
53
p2 =
47
p1 =
71
p2 =
31
p1 =
53
p2 =
61
p1 =
383
p2 =
617
p1 =
1993
p2 =
7
p1 =
31
p2 =
5
p1 =
1823
p2 =
1777
|
261 Solvers
274 Solvers
464 Solvers
321 Solvers
443 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!