This solution is outdated. To rescore this solution, sign in.
これで正しいだろ。
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 | Fail |
%%
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))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
The sum of the numbers in the vector
426 Solvers
343 Solvers
Deleting an element in a matrix
325 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!