This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 27;
y_correct = 3;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
2 | Pass |
x = 1;
y_correct = 1;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
3 | Pass |
x = 64;
y_correct = 4;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
4 | Pass |
x = 125;
y_correct = 5;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
5 | Pass |
x = 1000;
y_correct = 10;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
6 | Pass |
x = 729;
y_correct = 9;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
36390 Solvers
given 3 sides, find area of this triangle
600 Solvers
264 Solvers
Determine if input is divisible by three.
133 Solvers
81 Solvers