This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3];
y_correct = 2;
assert(isequal(prime_product(x),y_correct))
|
2 | Pass |
x = [5 5 5 2];
y_correct = -1;
assert(isequal(prime_product(x),y_correct))
|
3 | Pass |
x = [1 63];
y_correct = -1;
assert(isequal(prime_product(x),y_correct))
|
Getting the row and column location from a matrix
236 Solvers
4998 Solvers
484 Solvers
128 Solvers
498 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!