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
|
1223 Solvers
Create a Multiplication table matrix...
283 Solvers
216 Solvers
420 Solvers
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!