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))
y =
3
|
2 | Pass |
n = 20;
y_correct = 23;
assert(isequal(closestPrime(n),y_correct))
n =
21
n =
22
n =
23
y =
23
|
3 | Pass |
n = 86;
y_correct = 89;
assert(isequal(closestPrime(n),y_correct))
n =
87
n =
88
n =
89
y =
89
|
4 | Pass |
n = 250;
y_correct = 251;
assert(isequal(closestPrime(n),y_correct))
n =
251
y =
251
|
1800 Solvers
15297 Solvers
267 Solvers
219 Solvers
Matlab Basics - Absolute Value
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!