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 = 3;
y_correct = 1;
assert(isequal(sum_non_primes(x),y_correct))
|
2 | Pass |
x=10;
y_correct = 38;
assert(isequal(sum_non_primes(x),y_correct))
|
3 | Pass |
x=1000;
y_correct = 424373;
assert(isequal(sum_non_primes(x),y_correct))
|
Select every other element of a vector
16261 Solvers
722 Solvers
Back to basics 22 - Rotate a matrix
682 Solvers
534 Solvers
Set the array elements whose value is 13 to 0
754 Solvers