This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 4*pi;
y_correct = 4*pi/3;
assert(isequal(sphere_volume(x),y_correct))
|
2 | Fail |
%%
x = 36*pi;
y_correct = 36*pi;
assert(isequal(sphere_volume(x),y_correct))
Error: Assertion failed.
|
3 | Pass |
%%
x = 6;
y_correct = sqrt(6/pi);
assert(isequal(sphere_volume(x),y_correct))
|
4107 Solvers
2401 Solvers
Back to basics 25 - Valid variable names
293 Solvers
641 Solvers
315 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!