This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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
|
927 Solvers
276 Solvers
07 - Common functions and indexing 5
254 Solvers
205 Solvers
147 Solvers