Seems people can't read the rules. Trouble is that Cody's "test cases" can't test for existence of disallowed operators in the code.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 0;
y_correct = 0;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
ans =
0
|
2 | Pass |
%%
n = 0.1;
y_correct = 0.0750;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
ans =
0.0750
|
3 | Pass |
%%
n = 1;
y_correct = 0.7500;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
ans =
0.7500
|
4 | Pass |
%%
n = -1;
y_correct = -0.7500;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
ans =
-0.7500
|
3113 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
519 Solvers
387 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!