Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
v1 = 1;
v2 = 2;
v3 = 3;
d = 10;
assert(abs(thefly(v1,v2,v3,d)-10)/10<.01)
|
2 | Pass |
%%
v1 = 20;
v2 = 20;
v3 = 50;
d = 100;
assert(abs(thefly(v1,v2,v3,d)-125)/125<.01)
|
3 | Pass |
%%
v1 = 40;
v2 = 20;
v3 = 90;
d = 10;
assert(abs(thefly(v1,v2,v3,d)-15)/15<.01)
|
4 | Pass |
%%
v1 = 40;
v2 = 15;
v3 = 45;
d = 110;
assert(abs(thefly(v1,v2,v3,d)-90)/90<.01)
|
3075 Solvers
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
4598 Solvers
19332 Solvers
2183 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!