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 |
%%
x = [5 4 7 3 1];
y_correct = 7;
assert(isequal(mostPrimes(x),y_correct));
ans =
7
|
2 | Pass |
%%
x = [5 3 1];
y_correct = 5;
assert(isequal(mostPrimes(x),y_correct));
ans =
5
|
17220 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
5008 Solvers
348 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!