This solution is outdated. To rescore this solution, sign in.
Why is this a leading solution? The complexity is higher than a simple "pi * z * z * a".
.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
z = 1;
a = 1;
v_correct = pi;
assert(isequal(pizza(z,a),v_correct))
|
2 | Pass |
%%
z = 2;
a = 1;
v_correct = 4*pi;
assert(isequal(pizza(z,a),v_correct))
|
3 | Pass |
%%
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
|
4 | Pass |
%%
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
|
1964 Solvers
How to find the position of an element in a vector without using the find function
2320 Solvers
Back to basics 3 - Temp Directory
277 Solvers
Back to basics 13 - Input variables
203 Solvers
342 Solvers