This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = 3;
assert(isequal(closestPrime(n),y_correct))
|
2 | Pass |
n = 20;
y_correct = 23;
assert(isequal(closestPrime(n),y_correct))
|
3 | Pass |
n = 86;
y_correct = 89;
assert(isequal(closestPrime(n),y_correct))
|
4 | Pass |
n = 250;
y_correct = 251;
assert(isequal(closestPrime(n),y_correct))
|
2183 Solvers
261 Solvers
Calculate the area of a triangle between three points
871 Solvers
Multiples of a Number in a Given Range
214 Solvers
227 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!