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
|
Make an awesome ramp for a tiny motorcycle stuntman
262 Solvers
Reverse the elements of an array
553 Solvers
Sum the elements in either diagonal of a square matrix
144 Solvers
Find out value of sine given by degree.
171 Solvers
182 Solvers