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 = 10;
y_correct = [ 2 3 5 7 ];
assert(isequal(prime(x),y_correct))
|
2 | Pass |
%%
x = 19;
y_correct = [ 2 3 5 7 11 13 17 19 ];
assert(isequal(prime(x),y_correct))
|
3 | Pass |
%%
x = 1;
y_correct = [ ];
assert(isequal(prime(x),y_correct))
|
1263 Solvers
620 Solvers
724 Solvers
Determine the number of odd integers in a vector
435 Solvers
241 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!