Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(isOrArePrimes(x),y_correct))
|
2 | Pass |
x = 1;
y = 7;
y_correct = [0 1];
assert(isequal(isOrArePrimes(x,y),y_correct))
|
3 | Pass |
x = 2;
y = 17;
z = 20;
y_correct = [1 1 0];
assert(isequal(isOrArePrimes(x,y,z),y_correct))
|
4106 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
856 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!