Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(isOrArePrimes(x),y_correct))
ans =
logical
0
|
2 | Pass |
x = 1;
y = 7;
y_correct = [0 1];
assert(isequal(isOrArePrimes(x,y),y_correct))
ans =
1×2 logical array
0 1
|
3 | Pass |
x = 2;
y = 17;
z = 20;
y_correct = [1 1 0];
assert(isequal(isOrArePrimes(x,y,z),y_correct))
ans =
1×3 logical array
1 1 0
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
594 Solvers
260 Solvers
320 Solvers
137 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!