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 =
23
p2 =
5
p1 =
31
p2 =
3
p1 =
37
p2 =
3
p1 =
43
p2 =
3
p1 =
47
p2 =
5
p1 =
53
p2 =
5
p1 =
61
p2 =
3
p1 =
67
p2 =
3
p1 =
73
p2 =
3
|
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 =
17
p2 =
3
p1 =
19
p2 =
3
p1 =
97
p2 =
3
p1 =
97
p2 =
5
p1 =
109
p2 =
5
p1 =
997
p2 =
3
p1 =
1997
p2 =
3
p1 =
31
p2 =
5
p1 =
3593
p2 =
7
|
12387 Solvers
Back to basics 19 - character types
225 Solvers
Calculate the area of a triangle between three points
879 Solvers
Rounding off numbers to n decimals
1051 Solvers
486 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!