This solution is outdated. To rescore this solution, sign in.
you still not change the wrong test suite:4.1 is not a prime.
agree with bainhome
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 127;
y_correct = 113;
assert(isequal(minorprime(n),y_correct))
|
2 | Pass |
%%
n = 125;
y_correct = 113;
assert(isequal(minorprime(n),y_correct))
|
3 | Pass |
%%
n = 3;
y_correct = 2;
assert(isequal(minorprime(n),y_correct))
|
4 | Pass |
%%
n = 2;
y_correct = 1;
assert(isequal(minorprime(n),y_correct))
|
5 | Pass |
%%
n = 1328;
y_correct = 1327;
assert(isequal(minorprime(n),y_correct))
|
6 | Pass |
%%
n = 5050109;
y_correct = 5050099;
assert(isequal(minorprime(n),y_correct))
|
Return the largest number that is adjacent to a zero
3751 Solvers
267 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
387 Solvers
2145 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!