Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 16;
y_correct = 4;
assert(isequal(no_FF(x),y_correct))
ans =
4
|
2 | Pass |
%%
x = 10;
y_correct = 4;
assert(isequal(no_FF(x),y_correct))
ans =
4
|
3 | Pass |
%%
x = 6;
y_correct = 3;
assert(isequal(no_FF(x),y_correct))
ans =
3
|
4 | Pass |
%%
x = 3;
y_correct = 2;
assert(isequal(no_FF(x),y_correct))
ans =
2
|
5 | Pass |
%%
x = 20;
y_correct = 5;
assert(isequal(no_FF(x),y_correct))
ans =
5
|
6 | Pass |
%%
x = 65;
y_correct = 7;
assert(isequal(no_FF(x),y_correct))
ans =
7
|
Maximum running product for a string of numbers
1112 Solvers
348 Solvers
Output any real number that is neither positive nor negative
316 Solvers
283 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!